mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-06-08 03:34:13 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package adapter
|
|
|
|
import "time"
|
|
|
|
type TimeService interface {
|
|
SimpleLifecycle
|
|
TimeFunc() func() time.Time
|
|
}
|