communicate/communicate.go

19 lines
243 B
Go
Raw Normal View History

2016-11-28 05:13:15 +00:00
package communicate
import (
"fmt"
"loafle.com/commons/communicate/events"
)
var _c *communicator = nil
func init() {
fmt.Println("init communicator")
_c = NewCommunicator()
_c.start()
}
func Send(e *events.Event) {
_c.addEvent(e)
}