| 2 | |
| 3 | #[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Hash)] |
| 4 | pub struct AuthResp { |
| 5 | pub session_key: Option<String>, |
| 6 | pub calls_used: i32, |
| 7 | pub calls_remaining: i32, |
| 8 | } |
| 9 | |
| 10 | #[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Hash)] |
| 11 | pub struct AddUserResp { |
nothing calls this directly
no outgoing calls
no test coverage detected