1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-24 13:48:53 +08:00
eventials.goevents/producer.go
2016-12-01 10:52:22 -02:00

6 lines
87 B
Go

package events
type Producer interface {
Publish(action string, data []byte) error
}