1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/enabler.go
2018-04-07 14:39:28 -07:00

7 lines
73 B
Go

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