blob: 422e35d97272b4261ef085e8fca2b707e0582871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub fn help() {
let help =
"Usage:
crab [-d] command [args]
Options:
-v --version Get the current version of the package
-h --help Generates the crab help message
-d If your user is set to persist, dont save persistance";
println!("{}", help);
}
|