From 47468329953dc8d4d4a8d6ed96d418c0e16489bf Mon Sep 17 00:00:00 2001 From: raylu Date: Mon, 24 Jan 2011 17:27:13 -0500 Subject: [PATCH] Use new forked goconfig as a submodule --- .gitmodules | 3 +++ auth.go | 2 +- goconfig | 1 + rbot.go | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .gitmodules create mode 160000 goconfig diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a3c388c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "goconfig"] + path = goconfig + url = https://github.com/raylu/goconfig.git diff --git a/auth.go b/auth.go index 6f8bb4c..12ebe93 100644 --- a/auth.go +++ b/auth.go @@ -5,7 +5,7 @@ import ( "os" "strings" irc "github.com/fluffle/goirc/client" - "github.com/kless/goconfig/config" + "goconfig" ) const authFile = "auth.conf" diff --git a/goconfig b/goconfig new file mode 160000 index 0000000..61de17d --- /dev/null +++ b/goconfig @@ -0,0 +1 @@ +Subproject commit 61de17d7ee327208dbf1f98cacf70fd14930a493 diff --git a/rbot.go b/rbot.go index d3bad02..93267aa 100644 --- a/rbot.go +++ b/rbot.go @@ -8,7 +8,7 @@ import ( "time" "crypto/tls" "crypto/rand" - "github.com/kless/goconfig/config" + "goconfig" ) const confFile = "rbot.conf"