1/// Authenticated user identity derived from a valid session. 2#[derive(Debug, Clone)] 3pub struct CurrentUser { 4 pub did: String, 5 pub handle: Option<String>, 6}