rename src/{clap -> args}.rs

This commit is contained in:
Charles Hall 2024-06-06 21:28:51 -07:00
parent b34e001997
commit 3650fde0ac
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 2 additions and 2 deletions

13
src/args.rs Normal file
View file

@ -0,0 +1,13 @@
//! Integration with `clap`
use clap::Parser;
/// Command line arguments
#[derive(Parser)]
#[clap(about, version = crate::version())]
pub(crate) struct Args;
/// Parse command line arguments into structured data
pub(crate) fn parse() -> Args {
Args::parse()
}