From af6810f0cc4559470409f476252efa13c424ab82 Mon Sep 17 00:00:00 2001 From: pommicket Date: Thu, 25 Sep 2025 21:51:14 -0400 Subject: Start animalia --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index f484ade..0fcc3d6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,6 +4,7 @@ use std::io::BufWriter; use std::process::ExitCode; mod definitions; +mod animalia; fn do_write(path: &str, write_func: W) -> Result<(), Box> where @@ -43,7 +44,8 @@ fn try_main() -> Result<(), Box> { command_args.push(arg.to_owned()); } match &command.to_string_lossy()[..] { - "definitions" => definitions::definitions(command_args), + "definitions" => definitions::main(command_args), + "animalia" => animalia::main(command_args), x => Err(format!("Unrecognized command: {x}").into()), } } -- cgit v1.2.3