This crate provides structures and support for serializing and deserializing OpenCLI specifications.
use opencli::OpenCliDocument;
fn main() {
let opencli = OpenCliDocument::from_path("path/to/opencli.yaml").unwrap();
println!("{opencli:#?}");
}