Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu!
osu.bingo
osu
1use chrono::{DateTime, Utc};
2use serde::{Deserialize, Serialize};
3
4// Reexports
5pub use super::bingo_user::PgUser;
6pub use super::oauth_state::OauthState;
7pub use super::oauth_token::PgOauthToken;
8
9#[derive(Deserialize, Serialize)]
10pub struct Session {
11 id: String,
12 user_id: i32,
13 token: String,
14 expires_at: DateTime<Utc>,
15}