diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/email/email.go | 4 | ||||
-rw-r--r-- | util/languages/translation.go | 4 | ||||
-rw-r--r-- | util/languages/translation_test.go | 2 | ||||
-rw-r--r-- | util/log/logger.go | 2 | ||||
-rw-r--r-- | util/modelHelper/modelHelper.go | 2 | ||||
-rw-r--r-- | util/search/search.go | 16 | ||||
-rw-r--r-- | util/server.go | 2 | ||||
-rw-r--r-- | util/signals/unix.go | 4 | ||||
-rw-r--r-- | util/timeHelper/timeHelper.go | 2 | ||||
-rw-r--r-- | util/unzlib.go | 2 |
10 files changed, 20 insertions, 20 deletions
diff --git a/util/email/email.go b/util/email/email.go index f4a9547..101dc4b 100644 --- a/util/email/email.go +++ b/util/email/email.go @@ -3,8 +3,8 @@ package email import ( "path/filepath" - "github.com/ewhal/nyaa/config" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/config" + "github.com/NyaaPantsu/nyaa/util/log" gomail "gopkg.in/gomail.v2" ) diff --git a/util/languages/translation.go b/util/languages/translation.go index d7c2189..d2bd5b6 100644 --- a/util/languages/translation.go +++ b/util/languages/translation.go @@ -8,8 +8,8 @@ import ( "path" "path/filepath" - "github.com/ewhal/nyaa/config" - "github.com/ewhal/nyaa/model" + "github.com/NyaaPantsu/nyaa/config" + "github.com/NyaaPantsu/nyaa/model" "github.com/nicksnyder/go-i18n/i18n" "github.com/nicksnyder/go-i18n/i18n/language" ) diff --git a/util/languages/translation_test.go b/util/languages/translation_test.go index 81fa696..9146bd8 100644 --- a/util/languages/translation_test.go +++ b/util/languages/translation_test.go @@ -4,7 +4,7 @@ import ( "path" "testing" - "github.com/ewhal/nyaa/config" + "github.com/NyaaPantsu/nyaa/config" ) func TestInitI18n(t *testing.T) { diff --git a/util/log/logger.go b/util/log/logger.go index 6eacfe1..f4cf9f1 100644 --- a/util/log/logger.go +++ b/util/log/logger.go @@ -5,7 +5,7 @@ import ( "os" "github.com/Sirupsen/logrus" - "github.com/ewhal/nyaa/config" + "github.com/NyaaPantsu/nyaa/config" lumberjack "gopkg.in/natefinch/lumberjack.v2" ) diff --git a/util/modelHelper/modelHelper.go b/util/modelHelper/modelHelper.go index fcbad6b..9d42f5c 100644 --- a/util/modelHelper/modelHelper.go +++ b/util/modelHelper/modelHelper.go @@ -2,7 +2,7 @@ package modelHelper import ( "fmt" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/util/log" "net/http" "reflect" "strconv" diff --git a/util/search/search.go b/util/search/search.go index 3d76087..c7ca74a 100644 --- a/util/search/search.go +++ b/util/search/search.go @@ -7,14 +7,14 @@ import ( "unicode" "unicode/utf8" - "github.com/ewhal/nyaa/cache" - "github.com/ewhal/nyaa/common" - "github.com/ewhal/nyaa/config" - "github.com/ewhal/nyaa/db" - "github.com/ewhal/nyaa/model" - "github.com/ewhal/nyaa/service" - "github.com/ewhal/nyaa/service/torrent" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/cache" + "github.com/NyaaPantsu/nyaa/common" + "github.com/NyaaPantsu/nyaa/config" + "github.com/NyaaPantsu/nyaa/db" + "github.com/NyaaPantsu/nyaa/model" + "github.com/NyaaPantsu/nyaa/service" + "github.com/NyaaPantsu/nyaa/service/torrent" + "github.com/NyaaPantsu/nyaa/util/log" ) var searchOperator string diff --git a/util/server.go b/util/server.go index caf557a..aa73a66 100644 --- a/util/server.go +++ b/util/server.go @@ -4,7 +4,7 @@ import ( "net/http" "runtime/debug" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/util/log" ) func SendError(w http.ResponseWriter, err error, code int) { diff --git a/util/signals/unix.go b/util/signals/unix.go index fe39500..f6f4085 100644 --- a/util/signals/unix.go +++ b/util/signals/unix.go @@ -3,8 +3,8 @@ package signals import ( - "github.com/ewhal/nyaa/router" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/router" + "github.com/NyaaPantsu/nyaa/util/log" "os" "os/signal" "syscall" diff --git a/util/timeHelper/timeHelper.go b/util/timeHelper/timeHelper.go index 38c8473..ba28c34 100644 --- a/util/timeHelper/timeHelper.go +++ b/util/timeHelper/timeHelper.go @@ -3,7 +3,7 @@ package timeHelper import ( "time" - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/util/log" ) func FewDaysLater(day int) time.Time { diff --git a/util/unzlib.go b/util/unzlib.go index 070b144..470328d 100644 --- a/util/unzlib.go +++ b/util/unzlib.go @@ -1,7 +1,7 @@ package util import ( - "github.com/ewhal/nyaa/util/log" + "github.com/NyaaPantsu/nyaa/util/log" "bytes" "compress/zlib" |