wip(p67,e0): whew!

This commit is contained in:
🪞👃🪞 2024-11-21 16:55:05 +01:00
parent faf7576ad8
commit 132093f14a
8 changed files with 64 additions and 59 deletions

View file

@ -1,7 +1,10 @@
use tek_core::clap::{self, Parser};
use tek_api::JackActivate;
use tek_core::{*, clap::{self, Parser}};
/// Application entrypoint.
pub fn main () -> Usually<()> {
Tui::run(JackClient::new("tek_transport")?.activate_with(TransportApp::try_from)?)?
Tui::run(JackClient::new("tek_transport")?.activate_with(|jack|{
tek_tui::TransportTui::try_from(jack)
})?)?;
Ok(())
}