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

9 lines
170 B
Go

package wtf
// Enablable is the interface that enforces enable/disable capabilities on a module
type Enablable interface {
Disable()
Disabled() bool
Enabled() bool
}