chore: Remove redundant logging
This commit is contained in:
parent
1e3ca5b711
commit
3a253d8568
1 changed files with 1 additions and 3 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue