feat: user service
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// Package local provides small in-process runtime adapters used by the user
|
||||
// service process.
|
||||
package local
|
||||
|
||||
import "time"
|
||||
|
||||
// Clock returns the current wall-clock time.
|
||||
type Clock struct{}
|
||||
|
||||
// Now returns the current time.
|
||||
func (Clock) Now() time.Time {
|
||||
return time.Now()
|
||||
}
|
||||
Reference in New Issue
Block a user