summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: bbcb314ada63378511584d600d2237f022f75e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! `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 event;
mod expire;
mod id;
mod login;
mod message;
mod repo;
#[cfg(test)]
mod test;
mod token;