1use crate::data::Store; 2use crate::routing::Router; 3use std::sync::Arc; 4 5pub trait Context { 6 fn router(&self) -> Arc<Router>; 7 fn store(&self) -> Arc<Store>; 8}