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