mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 15:51:23 +01:00
rename src/{clap -> args}.rs
This commit is contained in:
parent
b34e001997
commit
3650fde0ac
2 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ use tower_http::{
|
||||||
use tracing::{debug, info, info_span, warn, Instrument};
|
use tracing::{debug, info, info_span, warn, Instrument};
|
||||||
|
|
||||||
mod api;
|
mod api;
|
||||||
mod clap;
|
mod args;
|
||||||
mod config;
|
mod config;
|
||||||
mod database;
|
mod database;
|
||||||
mod error;
|
mod error;
|
||||||
|
|
@ -108,7 +108,7 @@ async fn main() -> ExitCode {
|
||||||
async fn try_main() -> Result<(), error::Main> {
|
async fn try_main() -> Result<(), error::Main> {
|
||||||
use error::Main as Error;
|
use error::Main as Error;
|
||||||
|
|
||||||
clap::parse();
|
args::parse();
|
||||||
|
|
||||||
// Initialize config
|
// Initialize config
|
||||||
let raw_config = Figment::new()
|
let raw_config = Figment::new()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue