brix_cli 0.4.1

Brix's CLI clap interface.
Documentation
// Copyright (c) 2021 Ethan Lerner, Caleb Cushing, and the Brix contributors
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

//! # Brix CLI
//! Brix's main crate for handling the [clap](https://crates.io/crates/clap) application, some error formatting,
//! and various other terminal functionality.

use brix_errors::BrixError;

mod app;
mod args;
mod config;
mod print;

pub mod select;

pub use args::clap_matches;
pub use clap::ArgMatches;
pub use config::Config;