chore: Remove redundant logging

This commit is contained in:
Paul Campbell 2024-04-06 18:50:16 +01:00
parent 1e3ca5b711
commit 3a253d8568

View file

@ -25,16 +25,14 @@ fn main() {
match commands.command { match commands.command {
Command::Init => { Command::Init => {
println!("Init command");
init::run(); init::run();
} }
Command::Server(server) => match server { Command::Server(server) => match server {
Server::Init => { Server::Init => {
println!("Server Init command");
server::init(); server::init();
} }
Server::Start => { Server::Start => {
println!("Server Start command"); server::start();
} }
}, },
} }