diff --git a/app/tek_cli.rs b/app/tek_cli.rs index 3562ecab..49ea88a9 100644 --- a/app/tek_cli.rs +++ b/app/tek_cli.rs @@ -1,4 +1,7 @@ pub(crate) use tek::*; +pub(crate) use tek_device::*; +pub(crate) use tek_engine::*; +pub(crate) use tengri::{*, tui::*}; pub(crate) use clap::{self, Parser, Subcommand}; /// Application entrypoint. diff --git a/app/tek_mode.rs b/app/tek_mode.rs index f304b517..6b959c3a 100644 --- a/app/tek_mode.rs +++ b/app/tek_mode.rs @@ -16,7 +16,7 @@ pub struct Mode { impl Draw for Mode { fn draw (&self, to: &mut TuiOut) { - self.content().draw(to) + //self.content().draw(to) } }