summaryrefslogtreecommitdiff
path: root/src/ui/handlers/mod.rs
blob: 5bfd0d65ca1889de7cb058e141f145845dc8a04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod asset;
mod channel;
mod index;
mod invite;
mod login;
mod me;
mod setup;

pub use asset::handler as asset;
pub use channel::handler as channel;
pub use index::handler as index;
pub use invite::handler as invite;
pub use login::handler as login;
pub use me::handler as me;
pub use setup::handler as setup;