3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-02-20 15:40:51 +01:00
ergo/goircd.go

12 lines
138 B
Go
Raw Normal View History

2012-04-07 11:44:59 -07:00
package main
2012-04-07 23:32:08 -07:00
// http://tools.ietf.org/html/rfc2812
2012-04-07 11:44:59 -07:00
import (
"irc"
)
func main() {
server := irc.NewServer()
2012-04-07 23:32:08 -07:00
server.Listen(":6667")
2012-04-07 11:44:59 -07:00
}