diff --git a/README.md b/README.md index c34fc959..1fc09606 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,6 @@ ergonomadic run -conf ergonomadic.conf * Niels Freier, added WebSocket support, * apologies to anyone I forgot. -[go-crypto]: http://godoc.org/code.google.com/p/go.crypto +[go-crypto]: https://godoc.org/golang.org/x/crypto [go-sqlite]: https://github.com/mattn/go-sqlite3 [proxy-proto]: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt diff --git a/irc/password.go b/irc/password.go index 1426c402..a814b4a4 100644 --- a/irc/password.go +++ b/irc/password.go @@ -1,7 +1,7 @@ package irc import ( - "code.google.com/p/go.crypto/bcrypt" + "golang.org/x/crypto/bcrypt" "encoding/base64" "errors" ) diff --git a/irc/strings.go b/irc/strings.go index 98304b1b..7b26a129 100644 --- a/irc/strings.go +++ b/irc/strings.go @@ -1,7 +1,7 @@ package irc import ( - "code.google.com/p/go.text/unicode/norm" + "golang.org/x/text/unicode/norm" "regexp" "strings" )