feat: run stub tek_chain

This commit is contained in:
🪞👃🪞 2024-08-06 16:56:23 +03:00
parent 2a60808239
commit c089e6cfa4
9 changed files with 60 additions and 38 deletions

View file

@ -0,0 +1,9 @@
pub(crate) use tek_core::*;
pub(crate) use tek_core::ratatui::prelude::*;
pub(crate) use tek_jack::*;
pub(crate) use std::sync::RwLockWriteGuard;
submod! { chain chain_view }
pub fn main () -> Usually<()> {
tek_core::run(Arc::new(RwLock::new(crate::Chain::new("todo")?)))?;
Ok(())
}