TextureSync/server/texture-sync-server/src/main.rs

22 lines
400 B
Rust
Raw Normal View History

2019-04-20 01:24:19 +02:00
// TODO: remove on implementation
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(dead_code)]
extern crate serde_json;
extern crate serde;
extern crate image;
2019-04-20 23:07:08 +02:00
extern crate lovecraft;
2019-04-20 01:24:19 +02:00
pub mod model;
pub mod persistency;
pub mod protocol;
mod server_state;
use server_state::*;
fn main() {
2019-04-20 23:07:08 +02:00
lovecraft::invoke();
panic!("Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn");
2019-04-20 01:24:19 +02:00
}