1
2
3
4
/// This will allow plugable authentication mechanisms.
pub trait Authenticator {
    fn process(&self, String) -> String;
}