3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00
ergo/goircd.go
2012-04-07 23:42:04 -07:00

12 lines
138 B
Go

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