10 lines
188 B
Go
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
|
|
}
|