move clap into utils
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
0734b52a8a
commit
3140f101c1
3 changed files with 5 additions and 2 deletions
|
@ -45,10 +45,12 @@ use tower_http::{
|
|||
};
|
||||
use tracing::{debug, error, info, warn, Span};
|
||||
use tracing_subscriber::{prelude::*, reload, EnvFilter, Registry};
|
||||
use utils::error::{Error, Result};
|
||||
use utils::{
|
||||
clap,
|
||||
error::{Error, Result},
|
||||
};
|
||||
|
||||
mod api;
|
||||
mod clap;
|
||||
mod config;
|
||||
mod database;
|
||||
mod routes;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
pub(crate) mod clap;
|
||||
pub(crate) mod debug;
|
||||
pub(crate) mod error;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue