1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Mould plugin for token authentication.

#[macro_use]
extern crate mould;
pub extern crate permission;

#[macro_use]
mod macros;
pub mod token;
pub mod cred;

pub use token::*;
pub use cred::*;

pub trait Role: 'static { }