1
2
3
4
5
6
7
8
9
10
11
12
// 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 Common
//! Common crate currently used for storing [AppContext] and other common functions in the future.

mod app_context;
pub mod context;

pub use app_context::AppContext;