9 lines
220 B
Rust
Raw Normal View History

2025-12-17 17:28:29 +01:00
use runner_examples::cucumber::{Mode, init_logging_defaults, init_tracing, run};
#[tokio::main(flavor = "current_thread")]
async fn main() {
init_logging_defaults();
init_tracing();
run(Mode::Host).await;
}