mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-04 01:57:45 +00:00
Add Gitter support
This commit is contained in:
15
vendor/github.com/mrexodia/wray/examples/publish.go
generated
vendored
Normal file
15
vendor/github.com/mrexodia/wray/examples/publish.go
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
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)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user