Structure to store authentication credentials with expiration
| 10 | |
| 11 | // Structure to store authentication credentials with expiration |
| 12 | pub struct AuthCredentials { |
| 13 | cookie: String, |
| 14 | gxf: String, |
| 15 | azt: String, |
| 16 | ist: String, |
| 17 | last_refresh: Instant, |
| 18 | valid_for: Duration, |
| 19 | } |
| 20 | |
| 21 | impl AuthCredentials { |
| 22 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected