paas_api/
lib.rs

1/// The current version of the API
2pub const CURRENT_PROTOCOL_VERSION: &str = env!("CARGO_PKG_VERSION");
3/// The minimal supported compatible version
4pub const MIN_SUPPORTED_VERSION: &str = "0.3.0"; // If our protocol changes in a breaking way, we should update this number accordingly
5
6/// Transcryptor config
7pub mod config;
8/// API paths
9pub mod paths;
10/// Managing PEP sessions
11pub mod sessions;
12/// Server status checks
13pub mod status;
14/// Pseudonym transcryption
15pub mod transcrypt;