remove pointless pub(crate) and use self::

And also fix the ordering of things in state_compressor.
This commit is contained in:
Charles Hall 2024-06-06 21:31:22 -07:00
parent c7e03a06f7
commit 0643a3f081
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
3 changed files with 8 additions and 6 deletions

View file

@ -40,8 +40,8 @@ use tower_http::{
};
use tracing::{debug, info, info_span, warn, Instrument};
pub(crate) mod api;
pub(crate) mod clap;
mod api;
mod clap;
mod config;
mod database;
mod error;