Minor tweaks to play nicely with the new go tool

This commit is contained in:
lye 2012-03-28 01:15:26 -05:00
parent f2faa10846
commit 4f82a31c9c
4 changed files with 2 additions and 11 deletions

View File

@ -1,9 +0,0 @@
include $(GOROOT)/src/Make.inc
TARG=github.com/lye/cleanirc
GOFILES=\
src/irc.go \
src/irc_struct.go \
src/irc_callback.go
include $(GOROOT)/src/Make.pkg

View File

@ -10,7 +10,7 @@ import (
"net"
"strings"
"time"
"tls"
"crypto/tls"
)
const (

View File

@ -7,7 +7,7 @@ package irc
import (
"net"
"time"
"tls"
"crypto/tls"
)
type IRCConnection struct {