risp/src/main.rs
philipp 15e0e485c4
All checks were successful
CI/CD Pipeline / test (push) Successful in 9m17s
add config for law texts, fixes #3
2024-02-06 10:17:14 +01:00

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();
}