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

pub use asset::handler as asset;
pub use conversation::handler as conversation;
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;
pub use swatch::handler as swatch;