initial commit (proof of concept build function, added cli structure

This commit is contained in:
2023-01-19 17:12:48 +01:00
commit b38bb186b1
12 changed files with 661 additions and 0 deletions

11
src/main.rs Normal file
View 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);
}