1 2 3 4 5 6 7 8 9
use uuid::Uuid; #[derive(Debug, Clone)] pub struct AuthSession { pub token: String, pub refresh_token: String, pub expires_at: i64, pub device_id: Option<Uuid>, }