mirror of https://github.com/fluffle/goirc
commit
d9267067cd
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
include $(GOROOT)/src/Make.inc
|
include $(GOROOT)/src/Make.inc
|
||||||
|
|
||||||
TARG=irc
|
TARG=github.com/fluffle/goirc/client
|
||||||
GOFILES=\
|
GOFILES=\
|
||||||
connection.go\
|
connection.go\
|
||||||
commands.go\
|
commands.go\
|
|
@ -1,4 +1,4 @@
|
||||||
package irc
|
package client
|
||||||
|
|
||||||
import "strings"
|
import "strings"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package irc
|
package client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
|
@ -1,4 +1,4 @@
|
||||||
package irc
|
package client
|
||||||
|
|
||||||
// this file contains the basic set of event handlers
|
// this file contains the basic set of event handlers
|
||||||
// to manage tracking an irc connection etc.
|
// to manage tracking an irc connection etc.
|
|
@ -1,4 +1,4 @@
|
||||||
package irc
|
package client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
|
@ -1,4 +1,4 @@
|
||||||
package irc
|
package client
|
||||||
|
|
||||||
// Here you'll find the Channel and Nick structs
|
// Here you'll find the Channel and Nick structs
|
||||||
// as well as the internal state maintenance code for the handlers
|
// as well as the internal state maintenance code for the handlers
|
Loading…
Reference in New Issue