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

View file

@ -41,7 +41,7 @@ use tower_http::{
use tracing::{debug, info, info_span, warn, Instrument};
mod api;
mod clap;
mod args;
mod config;
mod database;
mod error;
@ -108,7 +108,7 @@ async fn main() -> ExitCode {
async fn try_main() -> Result<(), error::Main> {
use error::Main as Error;
clap::parse();
args::parse();
// Initialize config
let raw_config = Figment::new()