forked from jshiffer/go-xmpp
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")
|
|
}
|