Skip to main content

rsomics_help/
lib.rs

1#![forbid(unsafe_code)]
2
3//! Unified command-line interaction and presentation for rsomics products.
4//! Products define one Clap command tree and parse it through [`parse`].
5
6mod cli;
7
8pub use cli::{command, parse, try_parse, try_parse_from};