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:
17
vendor/github.com/mrexodia/wray/examples/client.go
generated
vendored
Normal file
17
vendor/github.com/mrexodia/wray/examples/client.go
generated
vendored
Normal 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()
|
||||
}
|
Reference in New Issue
Block a user