pdt 0.3.5

Asset store API with relation graphs, tagging, full-text search, multi-instance SQLite tenancy, OIDC auth and Cedar authorization
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod error;
pub mod extractor;
pub mod middleware;

pub use config::AuthConfig;
pub use error::AuthError;
pub use extractor::AuthenticatedUser;
pub use middleware::AuthLayer;

#[cfg(test)]
mod tests;