auric 0.1.2

CLI for the Ember-inspired Auric SPA framework
1
2
3
4
5
6
7
8
9
10
11
pub mod routes;

include!("generated/mod.rs");

fn main() -> anyhow::Result<()> {
    let route_defs = discover_routes()?;
    let mut app = auric_runtime::App::new(&route_defs);
    init(&mut app)?;
    app.start()?;
    Ok(())
}