mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-08-02 04:43:15 +00:00
14 lines
316 B
Rust
14 lines
316 B
Rust
use runner_examples::{
|
|
cucumber::run,
|
|
defaults::{Mode, init_logging_defaults, init_node_log_dir_defaults, init_tracing},
|
|
};
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
|
async fn main() {
|
|
init_logging_defaults();
|
|
init_node_log_dir_defaults(Mode::Host);
|
|
init_tracing();
|
|
|
|
run(Mode::Host).await;
|
|
}
|