1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-09-06 00:43:20 +00:00

Remove explicit dependency on optional logging packages.

This commit is contained in:
Alex Bramley 2020-03-17 16:51:30 +00:00
parent b2c51c13c6
commit d8596aa285
3 changed files with 2 additions and 10 deletions

View file

@ -8,7 +8,6 @@ import (
"strings"
irc "github.com/fluffle/goirc/client"
"github.com/fluffle/goirc/logging/glog"
)
var host *string = flag.String("host", "irc.freenode.net", "IRC server")
@ -16,7 +15,6 @@ var channel *string = flag.String("channel", "#go-nuts", "IRC channel")
func main() {
flag.Parse()
glog.Init()
// create new IRC connection
c := irc.SimpleClient("GoTest", "gotest")