mirror of
https://github.com/eventials/goevents.git
synced 2025-04-24 13:48:53 +08:00
6 lines
87 B
Go
6 lines
87 B
Go
package events
|
|
|
|
type Producer interface {
|
|
Publish(action string, data []byte) error
|
|
}
|