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 }