working compound days + working public holidays
Some checks failed
Tests / Run Go Tests (push) Failing after 44s

This commit is contained in:
2025-12-24 01:38:16 +01:00
parent 3439fff841
commit 855cd6f34f
20 changed files with 1180 additions and 616 deletions

View File

@@ -23,6 +23,11 @@ type WorkDay struct {
worktimeAbsece Absence
}
// IsEmpty implements [IWorkDay].
func (d *WorkDay) IsEmpty() bool {
return len(d.Bookings) == 0
}
type WorktimeBase int
const (