overflow_commons_go/modules/commons/interfaces/Stoper.go

8 lines
97 B
Go
Raw Normal View History

2018-03-26 03:34:32 +00:00
package interfaces
2018-03-26 03:40:16 +00:00
import "context"
2018-03-26 03:34:32 +00:00
type Stoper interface {
2018-03-26 03:40:16 +00:00
Stop(ctx context.Context) error
2018-03-26 03:34:32 +00:00
}