package interfaces import ( "time" ) type ITimeProvider interface { Now() time.Time }