Files
galaxy-game/user/internal/ports/clock.go
T
2026-04-10 19:05:02 +02:00

10 lines
182 B
Go

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
}