mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
16 lines
274 B
Go
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()
|
|
}
|