Skip to main content

treease_cli/
internal_metadata.rs

1pub fn cli_help_json() -> serde_json::Value {
2    crate::spec::root_help_json_value()
3}
4
5pub fn operators_json() -> serde_json::Value {
6    serde_json::to_value(crate::catalog::operators()).expect("operators should serialize")
7}
8
9pub fn formats_json() -> serde_json::Value {
10    serde_json::to_value(crate::catalog::formats()).expect("formats should serialize")
11}