mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-18 00:19:21 +00:00
16 lines
295 B
Rust
16 lines
295 B
Rust
pub mod error;
|
|
pub mod extensions;
|
|
pub mod header;
|
|
pub mod namespace;
|
|
pub mod privileges;
|
|
pub mod resource;
|
|
pub mod resources;
|
|
pub mod xml;
|
|
|
|
use actix_web::FromRequest;
|
|
pub use error::Error;
|
|
|
|
pub trait Principal: std::fmt::Debug + Clone + FromRequest + 'static {
|
|
fn get_id(&self) -> &str;
|
|
}
|