summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 70c942af515b6246c9374a36d83723f1dbe5ac59 (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
28
29
30
#[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;
extern crate params;
extern crate persistent;
extern crate url;

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

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