curre/closers.go

8 lines
93 B
Go

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