Move irc/ to client/ and set up for goinstall.

This commit is contained in:
Alex Bramley 2010-11-21 19:53:14 +00:00
parent 00d25810b5
commit bedbfc2899
7 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"irc" irc "github.com/fluffle/goirc/client"
"fmt" "fmt"
"os" "os"
"bufio" "bufio"

View File

@ -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\

View File

@ -1,4 +1,4 @@
package irc package client
import "strings" import "strings"

View File

@ -1,4 +1,4 @@
package irc package client
import ( import (
"bufio" "bufio"

View File

@ -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.

View File

@ -1,4 +1,4 @@
package irc package client
import ( import (
"testing" "testing"

View File

@ -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