micro/sync/time/local/local.go

19 lines
284 B
Go
Raw Normal View History

2019-05-31 02:43:23 +03:00
// Package local provides a local clock
package local
import (
gotime "time"
"github.com/micro/go-micro/v2/sync/time"
2019-05-31 02:43:23 +03:00
)
type Time struct{}
func (t *Time) Now() (gotime.Time, error) {
return gotime.Now(), nil
}
func NewTime(opts ...time.Option) time.Time {
return new(Time)
}