| 50 | } |
| 51 | #[derive(Default)] |
| 52 | pub struct TokenStat { |
| 53 | pub access_token: String, |
| 54 | pub refresh_token: String, |
| 55 | pub expiry_date: DateTime<Utc>, |
| 56 | } |
| 57 | |
| 58 | impl TokenStat { |
| 59 | pub fn create_token(&mut self) { |
nothing calls this directly
no outgoing calls
no test coverage detected