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 diesel;
#[macro_use]
extern crate log;

#[macro_use]
mod util;

pub mod credentials;
pub mod manifest;
pub mod models;
pub mod rules;
pub mod schema;
pub mod twitter;

mod app;

pub use app::App;
pub use credentials::Credentials;
pub use manifest::Manifest;

#[doc(hidden)]
pub mod private {
    pub mod twitter {
        pub use crate::twitter::{api::*, *};
    }
}