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