mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 11:57:37 +03:00
8 lines
109 B
Go
8 lines
109 B
Go
package adapter
|
|
|
|
import "time"
|
|
|
|
type TimeService interface {
|
|
SimpleLifecycle
|
|
TimeFunc() func() time.Time
|
|
}
|