9 lines
161 B
Rust
9 lines
161 B
Rust
|
|
use req::*;
|
||
|
|
|
||
|
|
fn main() -> anyhow::Result<()> {
|
||
|
|
let project = demo_project();
|
||
|
|
std::fs::write("req.yml", serde_yaml::to_string(&project)?)?;
|
||
|
|
|
||
|
|
Ok(())
|
||
|
|
}
|