blob: 6ca9e4956bc0f63bdcf692cf2f02abdcebe32f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pub mod auth;
pub mod error;
#[cfg(debug_assertions)]
pub mod fake_auth;
pub mod play;
pub mod server;
pub mod table;
#[cfg(test)]
mod tests {
use env_logger::Env;
pub fn test_setup() {
dotenv::dotenv().ok();
let _ = env_logger::Builder::from_env(
Env::default().default_filter_or("info"),
)
.is_test(true)
.try_init();
}
}
|