mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 05:07:55 +08:00
12 lines
243 B
Rust
12 lines
243 B
Rust
pub mod choice;
|
|
pub mod editor;
|
|
pub(crate) mod prompt;
|
|
pub mod table;
|
|
|
|
use dialoguer::theme::ColorfulTheme;
|
|
use once_cell::sync::Lazy;
|
|
|
|
pub use self::table::*;
|
|
|
|
pub(crate) static THEME: Lazy<ColorfulTheme> = Lazy::new(ColorfulTheme::default);
|