tek/cli/tek.rs

10 lines
251 B
Rust

pub use tek::*;
pub(crate) use clap::{self, Parser, Subcommand};
/// Application entrypoint.
pub fn main () -> Usually<()> {
TekCli::parse().run()
}
#[test] fn verify_cli () {
use clap::CommandFactory;
TekCli::command().debug_assert();
}