package ports import "time" // Clock returns the current wall-clock time used by timestamped mutations. type Clock interface { // Now returns the current time. Now() time.Time }