mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
9 lines
217 B
Rust
9 lines
217 B
Rust
include!("./lib.rs");
|
|
|
|
/// Application entrypoint.
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(JackConnection::new("tek_transport")?.activate_with(|jack|{
|
|
TransportTui::try_from(jack)
|
|
})?)?;
|
|
Ok(())
|
|
}
|