1
//! # mk-cli
2
//!
3
//! `mk-cli` is a command line interface for the `mk` library.
4
use cli_entry::CliEntry;
5

            
6
/// The entry point for the CLI
7
mod cli_entry;
8

            
9
/// The struct that represents the stored secrets
10
mod secrets;
11

            
12
/// The main function
13
294
fn main() -> anyhow::Result<()> {
14
294
  let cli = CliEntry::new()?;
15
273
  cli.run()
16
294
}