ffplayout/src/main.rs

8 lines
149 B
Rust
Raw Normal View History

2022-02-12 22:32:51 +01:00
mod utils;
fn main() {
let config = utils::read_yaml();
println!("{:#?}", config);
//println!("{:?}", config.general.stop_threshold);
}