mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 19:22:26 +00:00
9 lines
163 B
Rust
9 lines
163 B
Rust
use rustical_store::auth::Principal;
|
|
|
|
pub mod user;
|
|
|
|
/// Required by the base layout
|
|
pub trait DefaultLayoutData {
|
|
fn get_user(&self) -> Option<&Principal>;
|
|
}
|