auric-runtime 0.1.2

Runtime for the Ember-inspired Auric SPA framework
Documentation
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>;
}