Skip to main content

px_native/profile/
mod.rs

1//! Tenant profile: per-`appId` parameters that select the right
2//! cipher constants, sensor endpoint, and fallback secret. Loaded
3//! from a TOML file at startup so adding a tenant is a config change,
4//! not a code change (ADR-0024 §N5).
5
6pub mod schema;
7
8pub use schema::{TenantProfile, XorKeys};