curre/closers.go

8 lines
93 B
Go
Raw Permalink Normal View History

2022-09-10 01:19:29 +02:00
package curre
import "context"
2022-09-10 13:08:16 +02:00
type Stopper interface {
Stop(ctx context.Context) error
2022-09-10 01:19:29 +02:00
}