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