Skip to content

Commit 3850a5d

Browse files
committed
chore: cleanup dead code
1 parent c07df1c commit 3850a5d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
use std::net::SocketAddr;
22

3-
use config::{load_config, GatewayConfig, ServiceConfig};
3+
use config::load_config;
44

55
mod config;
66

77
#[tokio::main]
88
async fn main() {
99
let config = load_config("gateway_config.toml");
1010
let addr = SocketAddr::from(([0, 0, 0, 0], 8080));
11+
println!("config:{:?}, addr:{:?}", config, addr);
1112
}

0 commit comments

Comments
 (0)