rust/hedgewars-server/src/server.rs
author unc0rr
Sun, 16 Dec 2018 00:09:20 +0100
changeset 14456 a077aac9df01
parent 14415 06672690d71b
child 14457 98ef2913ec73
permissions -rw-r--r--
Start database interaction implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14375
cc99f7c673c7 try again 🙃
alfadur
parents: 13119
diff changeset
     1
pub mod core;
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
     3
pub mod io;
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12143
diff changeset
     4
pub mod room;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12143
diff changeset
     5
pub mod network;
12130
6273f89ab13d Start on messages parser
unc0rr
parents: 12128
diff changeset
     6
pub mod coretypes;
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12130
diff changeset
     7
mod actions;
12143
7e874846afe3 Toss code around
unc0rr
parents: 12138
diff changeset
     8
mod handlers;
14456
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
     9
#[cfg(feature = "official-server")]
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
    10
mod database;