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 {
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();
}
},
}