Skip to main content

ckb_sentry_types/protocol/
mod.rs

1//! This module exposes the types for the Sentry protocol in different versions.
2
3#[cfg(feature = "protocol")]
4pub mod v7;
5
6/// The latest version of the protocol.
7pub const LATEST: u16 = 7;
8
9#[cfg(feature = "protocol")]
10pub use v7 as latest;
11
12mod envelope;
13mod session;