mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-08-01 20:33:13 +00:00
9 lines
220 B
Rust
9 lines
220 B
Rust
|
|
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;
|
||
|
|
}
|