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