mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
11 lines
234 B
Go
11 lines
234 B
Go
package pubsub
|
|
|
|
import "context"
|
|
|
|
type PubSub interface {
|
|
Subscribe(ctx context.Context, key string) error
|
|
Unsubscribe(ctx context.Context, key string) error
|
|
Publish(key, payload string) error
|
|
Listener() chan Msg
|
|
Close() error
|
|
}
|