mirror of
https://github.com/ergochat/ergo.git
synced 2026-04-07 07:59:09 +02:00
12 lines
138 B
Go
12 lines
138 B
Go
package main
|
|
// http://tools.ietf.org/html/rfc1459
|
|
|
|
import (
|
|
"irc"
|
|
)
|
|
|
|
func main() {
|
|
server := irc.NewServer()
|
|
server.Listen(":6697")
|
|
}
|