libcaliph/
args.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2License, v. 2.0. If a copy of the MPL was not distributed with this
3file, You can obtain one at https://mozilla.org/MPL/2.0/.
4Copyright 2021 Peter Dunne */
5//! This contains two submodules for parsing command line inputs using `clap` for both `caliph`, and `conph`
6//!
7
8mod args_caliph;
9mod args_conph;
10
11pub use args_caliph::CalibArgs;
12pub use args_conph::ConvArgs;