mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package adapter
|
|
|
|
import "time"
|
|
|
|
type TimeService interface {
|
|
SimpleLifecycle
|
|
TimeFunc() func() time.Time
|
|
}
|