add cthulhu to server

This commit is contained in:
CodeSteak 2019-04-20 23:07:08 +02:00
parent 88fae2cba4
commit 89902e57ff
2 changed files with 5 additions and 2 deletions

View File

@ -7,4 +7,5 @@ edition = "2018"
[dependencies]
image = "0.21.1"
serde = "1.0.90"
serde_json = "1.0.39"
serde_json = "1.0.39"
lovecraft = "0.2.0"

View File

@ -6,6 +6,7 @@
extern crate serde_json;
extern crate serde;
extern crate image;
extern crate lovecraft;
pub mod model;
pub mod persistency;
@ -15,5 +16,6 @@ mod server_state;
use server_state::*;
fn main() {
println!("Hello, world!");
lovecraft::invoke();
panic!("Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn");
}