ergo/ergonomadic.go

22 lines
375 B
Go
Raw Normal View History

2014-02-08 22:18:11 +01:00
package main
import (
"github.com/jlatt/ergonomadic/irc"
2014-02-09 16:53:42 +01:00
"log"
2014-02-08 22:18:11 +01:00
)
func main() {
2014-02-09 16:53:42 +01:00
config, err := irc.LoadConfig()
if err != nil {
log.Fatal(err)
return
}
irc.DEBUG_NET = config.Debug["net"]
irc.DEBUG_CLIENT = config.Debug["client"]
irc.DEBUG_CHANNEL = config.Debug["channel"]
irc.DEBUG_SERVER = config.Debug["server"]
irc.NewServer(config).ReceiveCommands()
2014-02-08 22:18:11 +01:00
}