diff --git a/src/main.rs b/src/main.rs index 7144ba1..c18b6de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,16 +25,14 @@ fn main() { match commands.command { Command::Init => { - println!("Init command"); init::run(); } Command::Server(server) => match server { Server::Init => { - println!("Server Init command"); server::init(); } Server::Start => { - println!("Server Start command"); + server::start(); } }, }