extract plugin crate

This commit is contained in:
🪞👃🪞 2025-01-11 22:23:58 +01:00
parent 1f10c95ed0
commit 8c6716adce
14 changed files with 53 additions and 15 deletions

17
plugin/src/lib.rs Normal file
View file

@ -0,0 +1,17 @@
mod plugin; pub use self::plugin::*;
mod lv2; pub use self::lv2::*;
pub(crate) use ::tek_jack::{*, jack::*};
pub(crate) use ::tek_tui::{
*,
tek_output::*,
tek_input::*,
tek_edn::*,
ratatui::prelude::*,
crossterm::event::*,
};
pub(crate) use std::cmp::Ord;
pub(crate) use std::fmt::{Debug, Formatter};
pub(crate) use std::sync::{Arc, RwLock};
pub(crate) use std::thread::JoinHandle;