1
2
3
4
5
6
7
8
9
10
#![feature(try_blocks, proc_macro_hygiene)]
#![deny(rust_2018_idioms, nonstandard_style)]
#![deny(clippy::doc_markdown, clippy::match_bool, clippy::match_same_arms)]
#![warn(future_incompatible)]

pub mod bundle;
pub mod config;
pub mod files;
pub mod server;
pub mod stats;