diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-16 23:24:52 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-16 23:24:52 +0800 |
| commit | 6e36fc3707e791c3c748133d648957706b54fd3a (patch) | |
| tree | 3851ed69d60f331a803a6c19c97a56829a11f2f5 /src/main.rs | |
| parent | 363fbc6e98f832471a17a10ec18e8823df6a2ed5 (diff) | |
Add CLI commands for bill management and persistence
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/main.rs b/src/main.rs index a97d952..614693b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,9 +1,9 @@ -use mingling::macros::gen_program; - mod bill; mod calc; mod cli; +mod display; mod error; +mod macros; mod who; #[cfg(test)] @@ -11,13 +11,5 @@ mod test; #[tokio::main] async fn main() { - cli::entry::entry().await + cli::entry().await } - -use crate::cli::calc_cmd::*; -use crate::cli::dispatchers::*; -use crate::cli::entry::*; -use crate::cli::io_error::*; -use crate::cli::ops_cmd::*; - -gen_program!(); |
