summaryrefslogtreecommitdiff
path: root/src/help.rs
blob: e6f4a7290ed08cb321e61ed75e6eecc1a91a87ed (plain)
1
2
3
4
5
6
7
8
9
10
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);
}