From b21240ebc290b388c178a9dc7ef64bc478e6308c Mon Sep 17 00:00:00 2001 From: Adam A Date: Fri, 16 Jan 2026 03:58:21 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20compiles!=20=F0=9F=90=A2=F0=9F=90=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/tek_cli.rs | 3 +++ app/tek_mode.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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) } }