auric 0.1.6

CLI for the Ember-inspired Auric SPA framework
1
2
3
4
5
6
7
use std::path::Path;

fn main() -> anyhow::Result<()> {
    let root = Path::new(env!("CARGO_MANIFEST_DIR"));
    auric_build::build(root)?;
    Ok(())
}