auric 0.1.0

CLI for the `auric` MVC SPA framework
1
2
3
4
5
6
7
8
9
10
pub mod routes;

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

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