mirror of
https://github.com/eventials/goevents.git
synced 2025-05-09 19:29:27 +08:00
6 lines
90 B
Go
6 lines
90 B
Go
package messaging
|
|
|
|
type Producer interface {
|
|
Publish(action string, data []byte) error
|
|
}
|