mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
10 lines
296 B
Rust
10 lines
296 B
Rust
include!("lib.rs");
|
|
/// Application entrypoint.
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(JackClient::new("tek_transport")?.activate_with(|jack|{
|
|
let mut transport = TransportToolbarView::new(jack, None);
|
|
transport.focused = true;
|
|
Ok(transport)
|
|
})?)?;
|
|
Ok(())
|
|
}
|