risp/src/main.rs
philipp b096ffe74d
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m36s
add first draft of abgb
2024-02-06 12:47:29 +01:00

12 lines
183 B
Rust

use risp::law::Law;
fn main() {
env_logger::init();
let config_path = "./data/configs/abgb.toml";
let law = Law::from_config(config_path).unwrap();
law.to_md();
}