paas_api/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
/// The current version of the API
pub const CURRENT_PROTOCOL_VERSION: &str = env!("CARGO_PKG_VERSION");
/// The minimal supported compatible version
pub const MIN_SUPPORTED_VERSION: &str = "0.1.0"; // If our protocol changes in a breaking way, we should update this number accordingly

/// API paths
pub mod paths;
/// Managing PEP sessions
pub mod sessions;
/// Server status checks
pub mod status;
/// Pseudonym transcryption
pub mod transcrypt;