curre/closers.go
2022-09-10 13:08:16 +02:00

8 lines
93 B
Go

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