1
0
Fork 0
forked from External/ergo

irc: Switch to golang.org versions, not google code versions of dependencies.

This has a few advantages:
* the google code versions are no longer maintained
* the google code versions are using mercurial (which I don't have installed)
This commit is contained in:
Robin Burchell 2015-07-02 14:10:19 +02:00
parent 952a62aa39
commit 6ad97f7e5d
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
package irc
import (
"code.google.com/p/go.text/unicode/norm"
"golang.org/x/text/unicode/norm"
"regexp"
"strings"
)