4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-04 08:57:44 +00:00

Add Gitter support

This commit is contained in:
Wim
2016-09-04 20:03:07 +02:00
parent 44144587a0
commit 12389d602e
20 changed files with 1782 additions and 1 deletions

17
vendor/github.com/mrexodia/wray/examples/client.go generated vendored Normal file
View File

@ -0,0 +1,17 @@
package main
import "github.com/pythonandchips/wray"
import "fmt"
func main() {
wray.RegisterTransports([]wray.Transport{&wray.HttpTransport{}})
client := wray.NewFayeClient("http://localhost:5000/faye")
fmt.Println("subscribing")
client.Subscribe("/foo", false, func(message wray.Message) {
fmt.Println("-------------------------------------------")
fmt.Println(message.Data)
})
client.Listen()
}

15
vendor/github.com/mrexodia/wray/examples/publish.go generated vendored Normal file
View 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)
}