blob: f1eb603483329124751bd66a2959686dd9ec745d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//! `hi` - a web-based, self-hosted chat system.
#![warn(clippy::all)]
#![warn(clippy::pedantic)]
mod app;
mod boot;
mod broadcast;
mod channel;
pub mod cli;
mod clock;
mod db;
mod error;
mod event;
mod expire;
mod id;
mod login;
mod message;
mod setup;
#[cfg(test)]
mod test;
mod token;
mod ui;
|