5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/mrexodia/wray/examples/publish.go

16 lines
336 B
Go
Raw Normal View History

2016-09-04 18:03:07 +00:00
package main
import "github.com/pythonandchips/wray"
import "fmt"
func main() {
wray.RegisterTransports([]wray.Transport{ &gofaye.HttpTransport{} })
client := wray.NewFayeClient("http://localhost:5000/faye")
params := map[string]interface{}{"hello": "from golang"}
fmt.Println("sending")
client.Publish("/foo", params)
}