Skip to main content

auric_runtime/
context.rs

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