user.rs

1use crate::db::UserId;
2
3#[derive(Debug, Clone)]
4pub struct User {
5    pub id: UserId,
6    pub github_login: String,
7    pub admin: bool,
8    pub connected_once: bool,
9}