summaryrefslogtreecommitdiff
path: root/src/user.rs
blob: aef43fa586dc2680b9487d5fd6def2d603f860eb (plain)
1
2
3
4
5
6
pub struct User {
    pub id: u64,
    pub name: String,
    pub token: String,
    pub chat_id: u64,
}