1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
extern crate rocket;

pub mod authenticator;

pub mod status;
pub mod userpass;

/// Example implementation of Authenticator and FromCookie and ToCookie
pub mod dummy;
mod config;