aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 2534b40..d6612b2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -11,16 +11,16 @@ fn main() {
let mut threads = vec![];
threads.push(thread::spawn(move || {
- debug!("spawned WorldServer thread");
- server::world::server::WorldServer::new(
+ debug!("spawned AutoServer thread");
+ server::auto::server::AutoServer::new(
TcpListener::bind(
&"0.0.0.0:6650".parse().unwrap()
).unwrap()
);
}));
threads.push(thread::spawn(move || {
- debug!("spawned AutoServer thread");
- server::auto::server::AutoServer::new(
+ debug!("spawned RoomServer thread");
+ server::room::server::RoomServer::new(
TcpListener::bind(
&"0.0.0.0:5673".parse().unwrap()
).unwrap()