mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
26 lines
370 B
Rust
26 lines
370 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(generic_const_exprs)]
|
|
|
|
extern crate clap;
|
|
|
|
extern crate lazy_static;
|
|
|
|
/// Application.
|
|
pub mod app;
|
|
|
|
/// Terminal events handler.
|
|
pub mod event;
|
|
|
|
/// Widget renderer.
|
|
pub mod ui;
|
|
|
|
/// Terminal user interface.
|
|
pub mod tui;
|
|
|
|
pub mod backend;
|
|
pub mod command;
|
|
pub mod constant;
|
|
/// Event handler.
|
|
pub mod handler;
|
|
pub mod logging;
|