initial commit (proof of concept build function, added cli structure
This commit is contained in:
11
src/main.rs
Normal file
11
src/main.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
mod app;
|
||||
|
||||
use std::env;
|
||||
|
||||
use app::App;
|
||||
|
||||
fn main() {
|
||||
let app = App::new();
|
||||
let args = env::args().collect();
|
||||
app.start(args);
|
||||
}
|
||||
Reference in New Issue
Block a user