This commit is contained in:
cx uname 2012-10-12 13:41:45 +04:00
parent 0bee6d1042
commit 2c18281558
1 changed files with 20 additions and 0 deletions

20
gsend.go Normal file
View File

@ -0,0 +1,20 @@
package main
import (
"github.com/cxindex/xmpp"
"io/ioutil"
"os"
)
func main() {
Conn, err := xmpp.Dial("xmpp.ru:5222", "hypnotoad", "xmpp.ru", "password", "ic", nil)
if err != nil {
println(err)
return
}
if s, err := ioutil.ReadAll(os.Stdin); err == nil {
Conn.Send("hypnotoad@xmpp.ru", "chat", string(s[:len(s)-1]))
return
}
}