This commit is contained in:
2022-09-10 13:08:16 +02:00
parent 33ac911f9c
commit 78c0c309d7
5 changed files with 28 additions and 5 deletions

View File

@@ -2,6 +2,6 @@ package curre
import "context"
type Closer interface {
Close(ctx context.Context) error
type Stopper interface {
Stop(ctx context.Context) error
}