cnf_lib/util/mod.rs
1// Copyright (C) 2023 Andreas Hartmann <hartan@7x.de>
2// GNU General Public License v3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5//! Misc utilities for different purposes.
6//!
7//! This module houses a grab-bag of helpers and convenience-functions meant to make handling
8//! different aspects of command finding easier.
9pub mod command_line;
10pub mod output_matcher;
11
12pub use prelude::*;
13
14pub mod prelude {
15 pub use super::command_line::{cmd, CommandLine};
16 pub use super::output_matcher::OutputMatcher;
17}