1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/enablable.go
2019-07-17 07:11:43 -07:00

10 lines
171 B
Go

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