3
0
mirror of https://github.com/ergochat/ergo.git synced 2026-04-07 07:59:09 +02:00
ergo/goircd.go
2012-04-07 11:45:38 -07:00

12 lines
138 B
Go

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