initial commit

This commit is contained in:
Jeremy Latt
2012-04-07 11:44:59 -07:00
commit a427e2bb47
6 changed files with 175 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
// http://tools.ietf.org/html/rfc1459
import (
"irc"
)
func main() {
server := irc.NewServer()
server.Listen(":6697")
}