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