feat: intial commit

This commit is contained in:
Nova
2022-05-11 23:50:46 -04:00
commit a75fa63d6a
9 changed files with 900 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
mod core;
use self::core::eventloop::EventLoop;
fn main() {
println!("Setting up Stardust socket...");
let event_loop = EventLoop::new().expect("Couldn't create server socket");
println!("Stardust socket created at {}", event_loop.socket_path);
}