1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#[macro_use]
extern crate hyper;

#[macro_use]
extern crate serde_derive;

#[allow(unused_imports)]
#[macro_use]
extern crate serde_json;

mod data;

pub mod auth;
pub mod list;

#[derive(Debug, Clone)]
pub struct Site {
    pub parent: String,
}