mirror of
https://github.com/amnezia-vpn/amnezia-box.git
synced 2026-05-17 08:26:26 +03:00
9 lines
109 B
Go
9 lines
109 B
Go
package adapter
|
|
|
|
import "time"
|
|
|
|
type TimeService interface {
|
|
SimpleLifecycle
|
|
TimeFunc() func() time.Time
|
|
}
|