Iterating on project format to make it friendlier

This commit is contained in:
Lucien Greathouse
2018-11-16 14:51:14 -08:00
parent a29c4f2b65
commit 60c5c2d344
8 changed files with 86 additions and 73 deletions

View File

@@ -1,24 +1,28 @@
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate rouille;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
#[macro_use] extern crate rouille;
#[macro_use] extern crate serde_derive;
extern crate notify;
extern crate rand;
extern crate rbx_tree;
extern crate regex;
extern crate serde;
extern crate serde_json;
extern crate regex;
extern crate rbx_tree;
extern crate uuid;
#[cfg(test)]
extern crate tempfile;
// pub mod roblox_studio;
pub mod commands;
pub mod id;
pub mod message_queue;
pub mod pathext;
pub mod project;
// pub mod roblox_studio;
pub mod session;
pub mod session_id;
pub mod vfs;
pub mod web;
pub mod web_util;
pub mod web_util;
// TODO: Remove
pub mod id;