Lines
100 %
Functions
50 %
Branches
//! # mk-cli
//!
//! `mk-cli` is a command line interface for the `mk` library.
use cli_entry::CliEntry;
/// The entry point for the CLI
mod cli_entry;
/// The struct that represents the stored secrets
mod secrets;
/// The main function
fn main() -> anyhow::Result<()> {
let cli = CliEntry::new()?;
cli.run()
}