1
0
mirror of https://github.com/taigrr/wtf synced 2026-04-01 07:48:45 -07:00
Files
wtf/wtf/stoppable.go
2019-07-29 06:15:51 -07:00

7 lines
112 B
Go

package wtf
// Stoppable is the interface that enforces a stoppable state
type Stoppable interface {
Stop()
}