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:
parent
b2c51c13c6
commit
d8596aa285
3 changed files with 2 additions and 10 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue