1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/enabler.go
2018-06-08 05:28:45 +04:30

8 lines
84 B
Go

package wtf
type Enabler interface {
Disabled() bool
Enabled() bool
Disable()
}