term/event/sub.go

13 lines
153 B
Go
Raw Normal View History

2024-10-23 22:01:10 +02:00
package event
import (
"context"
"io"
)
type Subscription interface {
io.Closer
Connect(ctx context.Context, connStr string) error
Next() error
}