1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![deny(missing_debug_implementations)]

pub mod proto;

#[cfg(feature = "agent")]
pub mod agent;
pub mod error;

#[cfg(feature = "agent")]
pub use self::agent::Agent;

#[cfg(feature = "agent")]
pub use async_trait::async_trait;