Skip to main content

auric_runtime/
context.rs

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}