2022-12-09 03:08:04 +00:00
|
|
|
package timesource
|
|
|
|
|
2022-12-10 15:38:18 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
)
|
2022-12-09 03:08:04 +00:00
|
|
|
|
|
|
|
type Timesource interface {
|
|
|
|
Now() time.Time
|
2022-12-10 15:38:18 +00:00
|
|
|
Start(ctx context.Context) error
|
2022-12-09 03:08:04 +00:00
|
|
|
Stop() error
|
|
|
|
}
|