Rename config::config to config::config_v1

To prevent module inception, which was a clippy warning.

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
Jacob Kiers 2024-02-23 23:34:19 +01:00
parent 97b4bf6bbe
commit 6284870059
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
mod config;
pub(crate) use config::ConfigV1;
pub(crate) use config::ParsedConfigV1;
mod config_v1;
pub(crate) use config_v1::ConfigV1;
pub(crate) use config_v1::ParsedConfigV1;