Started working on a cli frontend.

This commit is contained in:
2025-04-23 20:27:06 +02:00
parent 02913c7b52
commit db25dc0aed
49 changed files with 3838 additions and 59 deletions

14
gamenight-cli/src/main.rs Normal file
View File

@@ -0,0 +1,14 @@
pub mod flows;
use flows::{main::Main, Flow, GamenightState};
#[tokio::main]
async fn main() {
let mut state = GamenightState::new();
let mainflow = Main::new();
if let Err(x) = mainflow.run(&mut state).await {
println!("{}", x.error);
}
}