overflow_commons_go/modules/commons/interfaces/Stopper.go
crusader 21e9d8b4aa ing
2018-03-26 12:41:23 +09:00

8 lines
98 B
Go

package interfaces
import "context"
type Stopper interface {
Stop(ctx context.Context) error
}