tek/cli/tek.rs

10 lines
236 B
Rust

use tek::*;
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();
}