1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 Commands
//! Stores all supported commands and common functionality between commands.

pub use command::copy::CopyCommand;
pub use command::exec::ExecCommand;
pub use command::mkdir::MkdirCommand;
pub use command::search_replace::SearchReplaceCommand;
pub use command::template::TemplateCommand;
pub use command::{Command, ProcessedCommandParams};

mod command;
mod macros;