mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-28 06:25:13 +00:00
10 lines
111 B
Go
10 lines
111 B
Go
|
package timesource
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Timesource interface {
|
||
|
Now() time.Time
|
||
|
Start() error
|
||
|
Stop() error
|
||
|
}
|