mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
10 lines
268 B
Rust
10 lines
268 B
Rust
use tek_api::JackActivate;
|
|
use tek_core::{*, clap::{self, Parser}};
|
|
|
|
/// Application entrypoint.
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(JackClient::new("tek_transport")?.activate_with(|jack|{
|
|
tek_tui::TransportTui::try_from(jack)
|
|
})?)?;
|
|
Ok(())
|
|
}
|