Remove CLI usage comment

This commit is contained in:
SeanOMik 2022-11-13 19:45:49 -05:00
parent 32aed1689b
commit 024e51e60d
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
1 changed files with 0 additions and 22 deletions

View File

@ -6,28 +6,6 @@ use std::path::{PathBuf, Path};
use std::{io, fs};
use rand::seq::SliceRandom;
/*
Usage:
roulette <path> [path2]... [flags]
roulette [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
version Print version
Flags:
-c, --cache only scan directories once, at startup (incompatible with --filter)
-f, --filter enable filtering via query parameters (incompatible with --cache)
-h, --help help for roulette
-p, --port uint16 port to listen on (default 8080)
-r, --recursive recurse into subdirectories
-s, --sort enable sorting via query parameters
-v, --verbose log accessed files to stdout
Use "roulette [command] --help" for more information about a command.
*/
/// Simple program to greet a person
#[derive(Parser, Debug)]
#[command(author, version, about)]