utils (config): fix clippy

This commit is contained in:
MedzikUser 2022-04-16 22:48:22 +02:00
parent e6f5be15e4
commit a111a4adc0
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
mod config;
mod error;
mod parser;
pub use {config::*, error::*};
use parser as config;
pub use {error::*, config::*};