Skip to main content

rom_cli/
lib.rs

1//! ROM CLI - command-line interface and nix process wrappers
2mod cli;
3
4pub use cli::{
5  Cli,
6  Commands,
7  parse_args_with_separator,
8  replace_command_with_exit,
9  run,
10};