cli: no need for separate crate
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
🪞👃🪞 2025-08-30 04:01:50 +03:00
parent 7f03116cb3
commit e987aa697d
16 changed files with 107 additions and 135 deletions

27
crates/app/tek_deps.rs Normal file
View file

@ -0,0 +1,27 @@
pub use ::{
tek_engine::*,
tek_config::*,
tek_device::{self, *},
tengri::{
Usually, Perhaps, Has, MaybeHas, has, maybe_has, impl_debug,
dsl::*, input::*, output::*, tui::*,
tui::{
ratatui::{
self, prelude::{Style, Stylize, Buffer, Modifier, buffer::Cell, Color::{self, *}}
},
crossterm::{
self,
event::{Event, KeyCode::{self, *}},
},
}
},
std::{
path::{Path, PathBuf},
sync::{Arc, RwLock},
sync::atomic::{AtomicBool, AtomicUsize, Ordering::Relaxed},
error::Error,
collections::BTreeMap,
fmt::Write,
},
xdg::BaseDirectories,
};