gotosocial/vendor/github.com/superseriousbusiness/activity/pub/clock.go
2021-11-13 17:29:43 +01:00

11 lines
139 B
Go

package pub
import (
"time"
)
// Clock determines the time.
type Clock interface {
// Now returns the current time.
Now() time.Time
}