diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-09 01:39:05 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-09 01:39:54 +0800 |
| commit | 2a6320e39485fb494b827d14d9e76895fa4f58b2 (patch) | |
| tree | b3ea4fda9c3349f4c590e297dde2d19688991549 /tools/tscn-to-bsn/src/cmd/mod.rs | |
| parent | 85bca704b6c807b14df4ad6d71f70ae961290495 (diff) | |
Diffstat (limited to 'tools/tscn-to-bsn/src/cmd/mod.rs')
| -rw-r--r-- | tools/tscn-to-bsn/src/cmd/mod.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tools/tscn-to-bsn/src/cmd/mod.rs b/tools/tscn-to-bsn/src/cmd/mod.rs index 7d71273..a393940 100644 --- a/tools/tscn-to-bsn/src/cmd/mod.rs +++ b/tools/tscn-to-bsn/src/cmd/mod.rs @@ -1,15 +1,12 @@ use mingling::{Program, macros::program_setup}; -use crate::{ - ThisProgram, - cmd::{cmd_ast::CMDAst, cmd_build_cache::CMDBuildCache}, -}; +use crate::ThisProgram; pub mod cmd_ast; -pub mod cmd_build_cache; +pub mod cmd_build_uid_index; #[program_setup] pub fn commands_setup(p: &mut Program<ThisProgram>) { - p.with_dispatcher(CMDAst); - p.with_dispatcher(CMDBuildCache); + p.with_dispatcher(cmd_ast::CMDAst); + p.with_dispatcher(cmd_build_uid_index::CMDBuildUidIndex); } |
