sing/common/ntp/context.go
2023-04-21 17:08:54 +08:00

16 lines
274 B
Go

package ntp
import (
"context"
"time"
"github.com/sagernet/sing/service"
)
func TimeFuncFromContext(ctx context.Context) func() time.Time {
timeService := service.FromContext[TimeService](ctx)
if timeService == nil {
return nil
}
return timeService.TimeFunc()
}