summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: e165a1e970a04d08ab0160588d2153ad939c3a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#[macro_use]
extern crate horrorshow;
extern crate rusqlite;
extern crate crypto;
extern crate base64;
#[macro_use]
extern crate iron;
#[macro_use]
extern crate log;
#[macro_use]
extern crate router;
extern crate env_logger;
extern crate iron_sessionstorage;
extern crate staticfile;
extern crate regex;

pub mod systemd;
pub mod render;
pub mod auth;
pub mod server;
pub mod db;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}