mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2024-11-25 12:02:01 -08:00
9 lines
162 B
Go
9 lines
162 B
Go
package main
|
|
|
|
import "fluux.io/xmpp"
|
|
|
|
func main() {
|
|
component := xmpp.Component{Host: "mqtt.localhost", Secret: "mypass"}
|
|
component.Connect("localhost:8888")
|
|
}
|