From 404151fe9d58aff2e15bd7071f13aee11790c2b6 Mon Sep 17 00:00:00 2001 From: Roberto Besser Date: Fri, 4 Dec 2015 15:52:08 -0200 Subject: [PATCH] code.google.com is shutting down, change import to use gopkg.in --- README.md | 2 +- irc/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fc09606..a1ff1e51 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Discussion at: * follows the RFCs where possible * UTF-8 nick and channel names -* [gcfg](https://code.google.com/p/gcfg/) gitconfig-style configuration +* [gcfg](https://github.com/go-gcfg/gcfg/tree/v1) gitconfig-style configuration * server password (PASS command) * channels with most standard modes * IRC operators (OPER command) diff --git a/irc/config.go b/irc/config.go index f3db3ea9..14b084ec 100644 --- a/irc/config.go +++ b/irc/config.go @@ -1,7 +1,7 @@ package irc import ( - "code.google.com/p/gcfg" + "gopkg.in/gcfg.v1" "errors" "log" )