term/event/sub.go
2024-10-23 21:01:10 +01:00

13 lines
153 B
Go

package event
import (
"context"
"io"
)
type Subscription interface {
io.Closer
Connect(ctx context.Context, connStr string) error
Next() error
}