make the mode camelCase instead of lowercase

This commit is contained in:
Tamo 2024-02-08 14:56:28 +01:00 committed by Louis Dureuil
parent bf43a3f60a
commit 285aa15d2f
No known key found for this signature in database

View File

@ -33,7 +33,7 @@ pub fn configure(cfg: &mut web::ServiceConfig) {
}
#[derive(Debug, Default, Clone, Copy, Deserr, PartialEq, Eq)]
#[deserr(rename_all = lowercase)]
#[deserr(rename_all = camelCase)]
pub enum LogMode {
#[default]
Human,