tek_transport -> tek_clock

This commit is contained in:
🪞👃🪞 2025-01-06 21:13:44 +01:00
parent 795d91abd8
commit 647f07c446
4 changed files with 6 additions and 6 deletions

8
bin/cli_clock.rs Normal file
View file

@ -0,0 +1,8 @@
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))?)
}