dial9-macro 0.3.6

Proc-macro crate that provides the dial9_tokio_telemetry::main attribute macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---
source: dial9-macro/src/lib.rs
expression: output
---
fn main() {
    let __dial9_rt = ::dial9_tokio_telemetry::TracedRuntime::new(
        (move || my_config())(),
    );
    __dial9_rt
        .block_on(async move {
            do_work().await;
        })
}