fix: remove warnings and extra outputs

This commit is contained in:
Keivan-sf
2023-11-09 12:41:09 +03:30
parent 2e38ed537e
commit 50f1d6d018
4 changed files with 4 additions and 14 deletions

View File

@@ -13,15 +13,6 @@ struct Cli {
fn main() {
let cli = Cli::parse();
match cli.socksport {
Some(port) => {
println!("the port: {}", port)
}
None => {
println!("the port is not here")
}
};
println!("the uri is: {}", cli.uri);
let json_config = parser::create_json_config(&cli.uri, cli.socksport);
println!("The json config is: {}", json_config);
println!("{}", json_config);
}