6 lines
91 B
Go
6 lines
91 B
Go
|
package event
|
||
|
|
||
|
type EventConsumer interface {
|
||
|
SendJSON(eventtype string, o interface{})
|
||
|
}
|