github.com/wtfutil/wtf@v0.43.0/wtf/stoppable.go (about)

     1  package wtf
     2  
     3  // Stoppable is the interface that enforces a stoppable state
     4  type Stoppable interface {
     5  	Stop()
     6  }