auric-runtime 0.1.5

Runtime for the Ember-inspired Auric SPA framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;
pub mod components;
mod config;
mod context;
pub mod data;
pub mod routing;

pub use app::App;
pub use context::Context;

pub use auric_derive::AuricRoute;
pub use config::Config;
pub use console_error_panic_hook;
pub use console_log;

pub use async_trait;
pub use jsonapi_core;
pub use serde_json;