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

Class User

src/data/model.rs:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5#[derive(Debug, Serialize, Deserialize)]
6pub struct User {
7 pub id: i64,
8 pub email: String,
9 pub password: String, // Note: Storing plain-text passwords is not recommended. Use hashed passwords instead.
10 pub created_at: DateTime<Utc>,
11}
12
13#[derive(Debug, Serialize, Deserialize)]
14pub struct Chat {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected