rok-tenant 0.3.9

Multi-tenancy support for the rok ecosystem (row-level and schema-level isolation)
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Debug, Error)]
pub enum TenantError {
    #[error("no tenant resolved for this request")]
    NoTenant,

    #[error("invalid tenant ID: {0}")]
    InvalidId(String),
}