mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-07-06 10:49:31 +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()
|
||
|
|
}
|