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 context;
2mod query_params;
3mod task;
4pub use context::*;
5pub use query_params::*;
6pub use task::*;
7
8pub mod database;
9pub mod error;
10pub mod id;
11/// Library functions for dealing with the osu! API
12pub mod osu;
13pub mod rabbit;
14pub mod structs;
15
16pub const COOKIE_NAME: &'static str = "osu_bingo_token";