1use crate::routing::Router; 2use std::sync::Arc; 3 4#[allow(unused)] 5pub trait Context { 6 fn router(&self) -> Arc<Router>; 7}