weixin/pkg/pubsub/publisher.go

8 lines
136 B
Go
Raw Normal View History

2021-11-10 01:44:51 +08:00
package pubsub
import "context"
type Publisher interface {
Publish(ctx context.Context, subject string, message interface{}) error
}