MCPcopy Create free account
hub / github.com/bitswired/rustgpt / User

Class User

src/main.rs:116–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114
115#[derive(Debug, sqlx::FromRow, Serialize, Clone)]
116pub 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected