mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/exe/mod.rs')
-rw-r--r--src/exe/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/exe/mod.rs b/src/exe/mod.rs
index 801e122..fcfae12 100644
--- a/src/exe/mod.rs
+++ b/src/exe/mod.rs
@@ -1,5 +1,4 @@
pub mod args;
-pub mod edit;
pub mod print;
macro_rules!print_err
@@ -32,7 +31,6 @@ fn main() {
args.next().unwrap(); // path to executable
match args.next() {
None => eprintln!("Not enough arguments, valid commands are: edit, print"),
- Some(s) if s == "edit" => edit::main(args, 1),
Some(s) if s == "print" => print::main(args, 1),
Some(s) => eprintln!("Unknown argument {s}, valid commands are: edit, print"),
}