mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-01-12 02:56:42 +01:00
6 lines
149 B
Rust
6 lines
149 B
Rust
//! Multi-track mixer
|
|
include!("lib.rs");
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(Arc::new(RwLock::new(crate::Track::new("")?)))?;
|
|
Ok(())
|
|
}
|