droidkraft_tui/lib.rs
1//! DroidKraft Library
2//!
3//! A beautiful Terminal User Interface (TUI) for Android development and ADB commands.
4//! This library provides a high-level interface to ADB operations with a modern TUI.
5
6pub mod adb;
7pub mod app;
8pub mod devtools;
9pub mod effects;
10pub mod event;
11pub mod fastboot;
12pub mod logcat;
13pub mod menu;
14pub mod message;
15pub mod model;
16pub mod rom_flash;
17pub mod theme;
18pub mod update;
19pub mod view;