1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! This module exposes the types for the Sentry protocol in different versions.

pub mod v7;

/// The latest version of the protocol.
pub const LATEST: u16 = 7;

/// the always latest sentry protocol version
pub mod latest {
    pub use super::v7::*;
}