merge impl-v2: server

This commit is contained in:
Lucien Greathouse
2018-06-10 22:59:04 -07:00
parent e30545c132
commit ec1f9bd706
35 changed files with 1643 additions and 1207 deletions

26
server/src/lib.rs Normal file
View File

@@ -0,0 +1,26 @@
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate rouille;
#[macro_use] extern crate lazy_static;
extern crate notify;
extern crate rand;
extern crate serde;
extern crate serde_json;
extern crate regex;
#[cfg(test)]
extern crate tempfile;
pub mod commands;
pub mod file_route;
pub mod id;
pub mod message_session;
pub mod partition;
pub mod partition_watcher;
pub mod pathext;
pub mod project;
pub mod rbx;
pub mod rbx_session;
pub mod session;
pub mod vfs_session;
pub mod web;
pub mod web_util;