Rust struct representing the Json body of POST requests to the /forgot endpoint
| 78 | /// Rust struct representing the Json body of |
| 79 | /// POST requests to the /forgot endpoint |
| 80 | pub struct ForgotInput { |
| 81 | email: String, |
| 82 | } |
| 83 | |
| 84 | #[derive(Debug, Serialize, Deserialize)] |
| 85 | /// TODO: documentation |
nothing calls this directly
no outgoing calls
no test coverage detected