12 lines
183 B
Rust
12 lines
183 B
Rust
use risp::law::Law;
|
|
|
|
fn main() {
|
|
env_logger::init();
|
|
|
|
let config_path = "./data/config/mschg.toml";
|
|
|
|
let law = Law::from_config(config_path).unwrap();
|
|
|
|
law.to_md();
|
|
}
|