preliminary placeholder documentation

Signed-off-by: Ava Hahn <a.hahn@f5.com>
This commit is contained in:
Ava Hahn 2024-04-15 17:39:11 -07:00
parent 57e626f80a
commit 1bc8c26dab
2 changed files with 222 additions and 1 deletions

View file

@ -127,7 +127,7 @@ struct SchemaArgs {
required = true,
help = "path for schema query"
)]
path: String,
path: String
}
fn do_start(args: StartArgs) {
@ -233,6 +233,8 @@ fn get_schema(args: SchemaArgs) {
let mut emitter = YamlEmitter::new(&mut out_str);
emitter.dump(&pathspec).unwrap(); // dump the YAML object to a String
}
println!("{}", out_str);
}
fn main() {