1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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;