8 lines
98 B
Go
Raw Permalink Normal View History

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