| 12 | |
| 13 | #[derive(Debug, Serialize, Deserialize)] |
| 14 | pub struct Chat { |
| 15 | pub id: i64, |
| 16 | pub name: String, |
| 17 | pub user_id: i64, |
| 18 | } |
| 19 | |
| 20 | #[derive(Debug, Serialize, Deserialize, FromRow, Clone)] |
| 21 | pub struct ChatMessagePair { |
nothing calls this directly
no outgoing calls
no test coverage detected