diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-16 21:31:57 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-16 21:31:57 +0800 |
| commit | 363fbc6e98f832471a17a10ec18e8823df6a2ed5 (patch) | |
| tree | 98f71ab1796c1a9c1df411eee5174dd92001ef94 /src/cli/dispatchers.rs | |
Initialize Rust project with billing calculation functionality
Diffstat (limited to 'src/cli/dispatchers.rs')
| -rw-r--r-- | src/cli/dispatchers.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cli/dispatchers.rs b/src/cli/dispatchers.rs new file mode 100644 index 0000000..27b7747 --- /dev/null +++ b/src/cli/dispatchers.rs @@ -0,0 +1,12 @@ +use mingling::{Program, macros::program_setup}; + +use crate::ThisProgram; +use crate::cli::ops_cmd::{CreateCommand, InitHereCommand}; + +#[program_setup] +pub fn chaos_billing_setup(program: &mut Program<ThisProgram, ThisProgram>) { + program.with_dispatcher(InitHereCommand); + program.with_dispatcher(CreateCommand); + + // program.with_dispatcher(CalculateCommand); +} |
