1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-09-06 00:43:20 +00:00

Fix up README and example client.

This commit is contained in:
Alex Bramley 2013-02-16 11:04:06 +00:00
parent f27e56c8b0
commit a88b866b63
2 changed files with 6 additions and 6 deletions

View file

@ -16,14 +16,14 @@ func main() {
flag.Parse()
// create new IRC connection
c := irc.SimpleClient("GoTest", "gotest")
c := irc.Client("GoTest", "gotest")
c.EnableStateTracking()
c.AddHandler("connected",
c.HandleFunc("connected",
func(conn *irc.Conn, line *irc.Line) { conn.Join(*channel) })
// Set up a handler to notify of disconnect events.
quit := make(chan bool)
c.AddHandler("disconnected",
c.HandleFunc("disconnected",
func(conn *irc.Conn, line *irc.Line) { quit <- true })
// set up a goroutine to read commands from stdin