mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
10 lines
236 B
Rust
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();
|
|
}
|