Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu!
osu.bingo
osu
1mod bingo_game;
2mod bingo_square;
3mod chat;
4mod game_user;
5mod map;
6mod map_in_pool;
7mod map_stats;
8mod mappool;
9mod scalars;
10mod score;
11mod template;
12mod time_event;
13mod user;
14
15pub use bingo_game::*;
16pub use bingo_square::*;
17pub use chat::*;
18pub use game_user::*;
19pub use map::*;
20pub use map_in_pool::*;
21pub use map_stats::*;
22pub use mappool::*;
23pub use scalars::*;
24pub use score::*;
25pub use template::*;
26pub use time_event::*;
27pub use user::*;
28
29mod root;
30pub use root::*;
31
32use sqlx::PgPool;
33
34#[derive(Clone)]
35pub struct Context {
36 pub pool: PgPool,
37}