mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
10 lines
134 B
Go
10 lines
134 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
type Clock interface {
|
|
Now() time.Time
|
|
Sleep(time.Duration)
|
|
After(time.Duration) <-chan time.Time
|
|
}
|