1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/schedulable.go
2019-07-29 06:15:51 -07:00

9 lines
179 B
Go

package wtf
// Schedulable is the interface that enforces scheduling capabilities on a module
type Schedulable interface {
Refresh()
Refreshing() bool
RefreshInterval() int
}