moine-cli 0.1.0

Command line utilities for moine validation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Library entrypoint for the `moine` command-line interface.
//!
//! The published CLI crate primarily exposes the binary target. This library
//! target exists so integration tests and downstream wrappers can invoke the
//! same command dispatcher as the binary.

#![deny(missing_docs)]
#![allow(clippy::items_after_test_module)]

include!("main.rs");

/// Runs the `moine` CLI dispatcher using process arguments.
pub fn run_cli() {
    main();
}