ipchat 0.0.0

Chat solution for local networks based on WLAN and Router's IP Addresses
Documentation
1
2
3
4
5
6
7
8
9
10
use chrono::{DateTime, Utc};
use uuid::Uuid;

#[derive(Debug, Clone)]
pub struct User {
    pub id: Uuid,
    pub username: String,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
}