cnf_lib/util/mod.rs
1// SPDX-License-Identifier: GPL-3.0-or-later
2// SPDX-FileCopyrightText: (C) 2023 Andreas Hartmann <hartan@7x.de>
3// This file is part of cnf-lib, available at <https://gitlab.com/hartang/rust/cnf>
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
14/// Public prelude for common utlitities.
15pub mod prelude {
16 pub use super::command_line::{CommandLine, cmd};
17 pub use super::output_matcher::OutputMatcher;
18}