fix: compiles! 🐢🐢
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
Adam A 2026-01-16 03:58:21 +02:00
parent d930025422
commit b21240ebc2
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,7 @@
pub(crate) use tek::*; 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}; pub(crate) use clap::{self, Parser, Subcommand};
/// Application entrypoint. /// Application entrypoint.

View file

@ -16,7 +16,7 @@ pub struct Mode<D: Dsl + Ord> {
impl<D: Dsl + Ord> Draw<TuiOut> for Mode<D> { impl<D: Dsl + Ord> Draw<TuiOut> for Mode<D> {
fn draw (&self, to: &mut TuiOut) { fn draw (&self, to: &mut TuiOut) {
self.content().draw(to) //self.content().draw(to)
} }
} }