goat_cli/utils/mod.rs
1/// Parse the command line arguments
2/// for `goat-cli search` and `goat-cli count`.
3pub mod cli_matches;
4/// Parse an expression from the `-e` flag from
5/// the CLI.
6pub mod expression;
7/// Parse taxon ranks from the `--tax-ranks`
8/// from the CLI.
9pub mod tax_ranks;
10/// Generate the URLs from the CLI.
11pub mod url;
12/// Utility functions used across `goat-cli`.
13pub mod utils;
14/// Stored data for each of the variables used
15/// in `goat-cli`. Useful for comparing and debugging
16/// CLI arguments.
17pub mod variable_data;
18/// Parse variables on the CLI from the `-v` flag.
19pub mod variables;