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