updates to changeover and tests

This commit is contained in:
2022-04-03 22:33:50 -07:00
parent 0f88864200
commit 88ce350a61
5 changed files with 312 additions and 6 deletions

View File

@@ -12,9 +12,9 @@ This library operates off Period interfaces, which contain the following:
```
type Period interface {
GetStartTime() time.Time
GetEndTime() time.Time
GetIdentifier() string
GetStartTime() time.Time // Inclusive start time
GetEndTime() time.Time // Exclusive end time ("expiration time")
GetIdentifier() string
}
```