summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 271118b0042007984cd6f509c8425d705d6c45b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `hi` - a web-based, self-hosted chat system.
#![warn(clippy::all)]
#![warn(clippy::pedantic)]

mod app;
mod broadcast;
mod channel;
pub mod cli;
mod clock;
mod error;
mod events;
mod expire;
mod id;
mod login;
mod password;
mod repo;
#[cfg(test)]
mod test;