2024-08-22 13:19:33 -04:00
|
|
|
|
|
|
|
pub const EMPTY_CONTEXT: [&str;2] = [ "-E", "--empty"];
|
|
|
|
pub const HELP: [&str;2] = [ "-h", "--help" ];
|
|
|
|
pub const QUIET: [&str;2] = [ "-q", "--quiet" ];
|
2024-08-28 10:40:03 -04:00
|
|
|
pub const SET: &str = "--set";
|
2024-08-22 13:19:33 -04:00
|
|
|
pub const VERSION: [&str;2] = [ "-V", "--version" ];
|
|
|
|
|