brix_commands/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 Commands
7//! Stores all supported commands and common functionality between commands.
8
9pub use command::copy::CopyCommand;
10pub use command::exec::ExecCommand;
11pub use command::mkdir::MkdirCommand;
12pub use command::search_replace::SearchReplaceCommand;
13pub use command::template::TemplateCommand;
14pub use command::{Command, ProcessedCommandParams};
15
16mod command;
17mod macros;