1 2 3 4 5 6 7 8 9 10 11 12
use mingling::{Program, macros::program_setup}; use crate::ThisProgram; pub mod cmd_ast; pub mod cmd_build_uid_index; #[program_setup] pub fn commands_setup(p: &mut Program<ThisProgram>) { p.with_dispatcher(cmd_ast::CMDAst); p.with_dispatcher(cmd_build_uid_index::CMDBuildUidIndex); }