aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/src/main.rs
blob: 9ed77b3708956fada93a826381ec6802484dfc0a (plain)
1
2
3
4
5
6
7
extern crate planetwars_server;
extern crate tokio;

#[tokio::main]
async fn main() {
    planetwars_server::run_app().await;
}