mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-04 06:53:06 +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()
|
|
}
|