crusader d48adec776 ing
2018-03-26 12:40:16 +09:00

8 lines
97 B
Go

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