Skip to content
Snippets Groups Projects
timer.go 98 B
Newer Older
Oliver Herms's avatar
Oliver Herms committed
package server

import "time"

type timer interface {
	Stop() bool
	Reset(d time.Duration) bool
}