mirror of
https://github.com/taigrr/wtf
synced 2026-04-01 07:48:45 -07:00
7 lines
112 B
Go
7 lines
112 B
Go
package wtf
|
|
|
|
// Stoppable is the interface that enforces a stoppable state
|
|
type Stoppable interface {
|
|
Stop()
|
|
}
|