add new report handler

This commit is contained in:
Adrian Zürcher
2026-02-10 21:37:00 +01:00
parent 108eae597b
commit c1572c5ec6
4 changed files with 161 additions and 0 deletions

11
models/weekdays.go Normal file
View File

@@ -0,0 +1,11 @@
package models
type Weekdays struct {
Monday bool `json:"monday,omitempty"`
Tuesday bool `json:"tuesday,omitempty"`
Wednesday bool `json:"wednesday,omitempty"`
Thursday bool `json:"thursday,omitempty"`
Friday bool `json:"friday,omitempty"`
Saturday bool `json:"saturday,omitempty"`
Sunday bool `json:"sunday,omitempty"`
}