16af404462
Still a lot to do: - Delete old deliverer folder - Revisit handler funcs - Constructors - Side effects for the wrapped callback functions - Any other TODOs
12 行
139 B
Go
12 行
139 B
Go
package pub
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Clock determines the time.
|
|
type Clock interface {
|
|
// Now returns the current time.
|
|
Now() time.Time
|
|
}
|