1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![deny(warnings)]

//Only include any of this if stap is enabled for this build

#[cfg(enabled)]
pub mod probe;
#[cfg(enabled)]
pub mod provider;
#[cfg(enabled)]
pub mod tracer;

#[cfg(enabled)]
pub use probe::*;
#[cfg(enabled)]
pub use provider::*;
#[cfg(enabled)]
pub use tracer::*;