1
0
Fork 0
forked from External/ergo
ergo/ergonomadic.go
2012-04-09 08:03:16 -07:00

11 lines
138 B
Go

package main
// http://tools.ietf.org/html/rfc2812
import (
"irc"
)
func main() {
server := irc.NewServer()
server.Listen(":6667")
}