changed alarm to alarms for the alarms resource

This commit is contained in:
2026-03-03 17:38:32 +01:00
parent 024a212fe2
commit f84c8226a7
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -5,5 +5,5 @@ use crate::AppState;
mod alarm; mod alarm;
pub fn router() -> OpenApiRouter<AppState> { pub fn router() -> OpenApiRouter<AppState> {
OpenApiRouter::new().nest("/alarm", alarm::router()) OpenApiRouter::new().nest("/alarms", alarm::router())
} }