Files
galaxy-game/authsession/internal/ports/clock.go
T
2026-04-08 16:23:07 +02:00

10 lines
188 B
Go

package ports
import "time"
// Clock returns current UTC time for the auth/session application layer.
type Clock interface {
// Now returns the current service time.
Now() time.Time
}