reenable mixer crate

This commit is contained in:
🪞👃🪞 2024-11-03 18:15:58 +02:00
parent 792dab9714
commit 2f189c6d7e
7 changed files with 51 additions and 79 deletions

View file

@ -0,0 +1,6 @@
//! Plugin host
include!("lib.rs");
pub fn main () -> Usually<()> {
Tui::run(Arc::new(RwLock::new(crate::Plugin::new("")?)))?;
Ok(())
}