diff --git a/src/settings.rs b/src/settings.rs index c2057a9..fe6f44d 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -27,6 +27,9 @@ pub struct Auth { pub secret: String, } +// Remove the #[allow(dead_code)] attribute from the Settings struct when all the fields are being +// used. +#[allow(dead_code)] #[derive(Debug, Clone, Deserialize)] pub struct Settings { pub environment: String,