tracers_dyn_stap/lib.rs
1#![deny(warnings)]
2
3//Only include any of this if stap is enabled for this build
4
5#[cfg(enabled)]
6pub mod probe;
7#[cfg(enabled)]
8pub mod provider;
9#[cfg(enabled)]
10pub mod tracer;
11
12#[cfg(enabled)]
13pub use probe::*;
14#[cfg(enabled)]
15pub use provider::*;
16#[cfg(enabled)]
17pub use tracer::*;