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

@@ -27,12 +27,7 @@ pub fn serve(fuzzy_project_location: &Path) {
// roblox_studio::install_bundled_plugin().unwrap();
let session = Arc::new({
let mut session = Session::new(project);
session.start().unwrap();
session
});
let session = Arc::new(Session::new(project).unwrap());
let server = Server::new(Arc::clone(&session));
println!("Server listening on port 34872");