mirror of
https://github.com/taigrr/most-specific-period.git
synced 2026-04-02 03:38:41 -07:00
10 lines
128 B
Go
10 lines
128 B
Go
package msp
|
|
|
|
import "time"
|
|
|
|
type Period interface {
|
|
GetStartTime() time.Time
|
|
GetEndTime() time.Time
|
|
GetIdentifier() string
|
|
}
|