1package pubsub23import "context"45type PubSub interface {6 Subscribe(ctx context.Context, key string) error7 Unsubscribe(ctx context.Context, key string) error8 Publish(key, payload string) error9 Listener() chan Msg10 Close() error11}
Fork https://github.com/foxcpp/maddy
git clone git://git.lin.moe/go/maddy.git
1package pubsub23import "context"45type PubSub interface {6 Subscribe(ctx context.Context, key string) error7 Unsubscribe(ctx context.Context, key string) error8 Publish(key, payload string) error9 Listener() chan Msg10 Close() error11}