wip: enabling standalone mixer

This commit is contained in:
🪞👃🪞 2024-08-10 20:13:02 +03:00
parent 7685072e4c
commit 1d3d3875fe
11 changed files with 165 additions and 111 deletions

View file

@ -1,6 +1,6 @@
//! Multi-track mixer
include!("lib.rs");
pub fn main () -> Usually<()> {
tek_core::run(Arc::new(RwLock::new(crate::Mixer::new("")?)))?;
tek_core::run(Arc::new(RwLock::new(crate::Mixer::from_args()?)))?;
Ok(())
}