risp/src/main.rs

12 lines
183 B
Rust
Raw Normal View History

2024-02-06 10:17:14 +01:00
use risp::law::Law;
2023-11-03 22:40:19 +01:00
2023-11-03 13:45:25 +01:00
fn main() {
2023-11-05 12:46:04 +01:00
env_logger::init();
2024-02-06 14:33:42 +01:00
let config_path = "./data/configs/stgb.toml";
2024-02-06 10:17:14 +01:00
let law = Law::from_config(config_path).unwrap();
2023-11-06 16:25:38 +01:00
law.to_md();
2023-11-03 13:45:25 +01:00
}