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