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"
type Closer interface {
Close(ctx context.Context) error
}