commons-go/core/interfaces/Stopper.go

8 lines
98 B
Go
Raw Normal View History

2018-04-12 09:38:04 +00:00
package interfaces
import "context"
type Stopper interface {
Stop(ctx context.Context) error
}