mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-04-29 14:00:14 +02:00
10 lines
213 B
Rust
10 lines
213 B
Rust
include!("./lib.rs");
|
|
|
|
/// Application entrypoint.
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(JackClient::new("tek_transport")?.activate_with(|jack|{
|
|
TransportTui::try_from(jack)
|
|
})?)?;
|
|
Ok(())
|
|
}
|