Skip to main content

loonfs_api/
env.rs

1//! Environment variables used by more than one LoonFS process.
2
3/// Bearer token for remote API requests.
4pub const AUTH_TOKEN_ENV: &str = "LOONFS_AUTH_TOKEN";
5/// Secret used to sign content-transfer tokens.
6pub const CONTENT_TOKEN_SECRET_ENV: &str = "LOONFS_CONTENT_TOKEN_SECRET";