feat: stub tek_mixer, tek_plugin, tek_sampler

This commit is contained in:
🪞👃🪞 2024-08-06 19:10:42 +03:00
parent e2789d6728
commit b7d7864792
11 changed files with 98 additions and 77 deletions

View file

@ -1,6 +1,6 @@
//! Phrase editor.
//! Sample player
include!("lib.rs");
pub fn main () -> Usually<()> {
tek_core::run(Arc::new(RwLock::new(crate::Sampler::new("sampler", None)?)));
tek_core::run(Arc::new(RwLock::new(crate::Sampler::new("", None)?)))?;
Ok(())
}