aboutsummaryrefslogtreecommitdiff
path: root/tools/tscn-to-bsn/src/cmd/mod.rs
blob: a3939405c9548726d5b145a9e518f89e203bf505 (plain) (blame)
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);
}