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

Migrate to split event pkg.

This commit is contained in:
Alex Bramley 2011-11-13 14:07:19 +00:00
parent 4e4c4b6798
commit 907560b599
7 changed files with 4 additions and 517 deletions

View file

@ -3,7 +3,7 @@ package client
import (
"bufio"
"crypto/tls"
"github.com/fluffle/goirc/event"
"github.com/fluffle/goevent/event"
"github.com/fluffle/golog/logging"
"github.com/fluffle/goirc/state"
"fmt"

View file

@ -2,7 +2,7 @@ package client
import (
"bufio"
"github.com/fluffle/goirc/event"
"github.com/fluffle/goevent/event"
"github.com/fluffle/golog/logging"
"github.com/fluffle/goirc/state"
"gomock.googlecode.com/hg/gomock"

View file

@ -4,7 +4,7 @@ package client
// to manage tracking an irc connection etc.
import (
"github.com/fluffle/goirc/event"
"github.com/fluffle/goevent/event"
"strings"
)

View file

@ -4,7 +4,7 @@ package client
// to manage tracking state for an IRC connection
import (
"github.com/fluffle/goirc/event"
"github.com/fluffle/goevent/event"
"strings"
)