mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-13 15:24:46 +00:00
13 lines
140 B
Go
13 lines
140 B
Go
package timesource
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type Timesource interface {
|
|
Now() time.Time
|
|
Start(ctx context.Context) error
|
|
Stop()
|
|
}
|