reify 0.5.8

Write configuration files from templates using env variables
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use thiserror::Error;
use wasm_bindgen::JsValue;

#[derive(Error, Debug)]
pub enum ReifyError {
    #[error("JS Error - {0}")]
    JsError(String)
}

impl From<JsValue> for ReifyError {
    fn from(v: JsValue) -> Self {
        ReifyError::JsError(format!("{:?}", v))
    }
}