brix_cli/
lib.rs

1// Copyright (c) 2021 Ethan Lerner, Caleb Cushing, and the Brix contributors
2//
3// This software is released under the MIT License.
4// https://opensource.org/licenses/MIT
5
6//! # Brix CLI
7//! Brix's main crate for handling the [clap](https://crates.io/crates/clap) application, some error formatting,
8//! and various other terminal functionality.
9
10use brix_errors::BrixError;
11
12mod app;
13mod args;
14mod config;
15mod print;
16
17pub mod select;
18
19pub use args::clap_matches;
20pub use clap::ArgMatches;
21pub use config::Config;