aboutsummaryrefslogtreecommitdiffstats
path: root/crates/server/src/database/models.rs
blob: 9f6241aeb5d71f81802fd7a2f5e931f3ebd7ae48 (plain) (blame)
1
2
3
4
5
use uuid::Uuid;

pub struct User {
    pub id: Uuid,
}