blob: 27b77471395127742fd28f4b578dfe7492011859 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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);
}
|