mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
9 lines
179 B
Go
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
|
|
}
|