changeover features in progress

This commit is contained in:
2022-04-03 18:39:46 -07:00
parent 01897a6ae8
commit 71bb0676c0
2 changed files with 53 additions and 0 deletions

View File

@@ -9,4 +9,6 @@ var (
ErrEndAfterStart = errors.New("error: start time is after end time")
// ErrNoValidPeriods occurs when an empty set of periods is passed or when ll periods are invalid
ErrNoValidPeriods = errors.New("error: no valid periods available")
// ErrNoNextChangeover occurs when GetNextChangeover is called but there are no changeovers after t
ErrNoNextChangeover = errors.New("error: no valid periods available")
)