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