pub struct ControllerContext {}

impl ControllerContext {
    pub fn new() -> ControllerContext {
        ControllerContext {}
    }
}

impl Default for ControllerContext {
    fn default() -> Self {
        Self::new()
    }
}