forked from Roflin/gamenight
15 lines
272 B
Rust
15 lines
272 B
Rust
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);
|
|
}
|
|
}
|
|
|
|
|