auric 0.1.6

CLI for the Ember-inspired Auric SPA framework
use jsonapi_core::JsonApi;

#[derive(Clone, Debug, Default, JsonApi, PartialEq)]
#[jsonapi(type = "{{collection}}")]
pub struct {{structName}} {
    #[jsonapi(id)]
    pub id: String,
}


#[cfg(test)]
mod tests {
    use super::{{structName}};

    #[test]
    fn can_construct() {
        let _ = {{structName}}::default();
    }
}