| 12 | /// Stored authentication tokens |
| 13 | #[derive(Debug, Serialize, Deserialize)] |
| 14 | pub struct AuthTokens { |
| 15 | pub access_token: String, |
| 16 | pub refresh_token: Option<String>, |
| 17 | pub expires_at: u64, // Unix timestamp |
| 18 | } |
| 19 | |
| 20 | /// Device code response from Auth0 |
| 21 | #[derive(Debug, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected