commons-go/core/interfaces/Stopper.go
crusader 796da7bbfe ing
2018-04-12 18:38:04 +09:00

8 lines
98 B
Go

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