| 114 | |
| 115 | #[derive(Debug, sqlx::FromRow, Serialize, Clone)] |
| 116 | pub struct User { |
| 117 | id: i64, |
| 118 | email: String, |
| 119 | password: String, |
| 120 | created_at: NaiveDateTime, |
| 121 | openai_api_key: Option<String>, |
| 122 | } |
| 123 | |
| 124 | /// Utility function for mapping any error into a `500 Internal Server Error` |
| 125 | /// response. |
nothing calls this directly
no outgoing calls
no test coverage detected