flatten modules somewhat

This commit is contained in:
🪞👃🪞 2024-12-27 21:26:16 +01:00
parent cb7ba855ab
commit 0779560502
29 changed files with 442 additions and 474 deletions

View file

@ -9,7 +9,7 @@ pub fn main () -> Usually<()> { SamplerCli::parse().run() }
impl SamplerCli {
fn run (&self) -> Usually<()> {
Tui::run(JackClient::new("tek_sampler")?.activate_with(|x|{
let sampler = tek::tui::SamplerTui::try_from(x)?;
let sampler = tek::SamplerTui::try_from(x)?;
Ok(sampler)
})?)?;
Ok(())