summaryrefslogtreecommitdiffstats
path: root/cache
diff options
context:
space:
mode:
Diffstat (limited to 'cache')
-rw-r--r--cache/cache.go12
-rw-r--r--cache/memcache/memcache.go4
-rw-r--r--cache/native/native.go4
-rw-r--r--cache/native/native_test.go4
-rw-r--r--cache/nop/nop.go4
5 files changed, 14 insertions, 14 deletions
diff --git a/cache/cache.go b/cache/cache.go
index c16a16d..27291ec 100644
--- a/cache/cache.go
+++ b/cache/cache.go
@@ -1,12 +1,12 @@
package cache
import (
- "github.com/ewhal/nyaa/cache/memcache"
- "github.com/ewhal/nyaa/cache/native"
- "github.com/ewhal/nyaa/cache/nop"
- "github.com/ewhal/nyaa/common"
- "github.com/ewhal/nyaa/config"
- "github.com/ewhal/nyaa/model"
+ "github.com/NyaaPantsu/nyaa/cache/memcache"
+ "github.com/NyaaPantsu/nyaa/cache/native"
+ "github.com/NyaaPantsu/nyaa/cache/nop"
+ "github.com/NyaaPantsu/nyaa/common"
+ "github.com/NyaaPantsu/nyaa/config"
+ "github.com/NyaaPantsu/nyaa/model"
)
// Cache defines interface for caching search results
diff --git a/cache/memcache/memcache.go b/cache/memcache/memcache.go
index 57f36d9..7188a4b 100644
--- a/cache/memcache/memcache.go
+++ b/cache/memcache/memcache.go
@@ -1,8 +1,8 @@
package memcache
import (
- "github.com/ewhal/nyaa/common"
- "github.com/ewhal/nyaa/model"
+ "github.com/NyaaPantsu/nyaa/common"
+ "github.com/NyaaPantsu/nyaa/model"
)
type Memcache struct {
diff --git a/cache/native/native.go b/cache/native/native.go
index 56c1094..9442f3d 100644
--- a/cache/native/native.go
+++ b/cache/native/native.go
@@ -5,8 +5,8 @@ import (
"sync"
"time"
- "github.com/ewhal/nyaa/common"
- "github.com/ewhal/nyaa/model"
+ "github.com/NyaaPantsu/nyaa/common"
+ "github.com/NyaaPantsu/nyaa/model"
)
const expiryTime = time.Minute
diff --git a/cache/native/native_test.go b/cache/native/native_test.go
index 6c977ed..13a2fb5 100644
--- a/cache/native/native_test.go
+++ b/cache/native/native_test.go
@@ -4,8 +4,8 @@ import (
"sync"
"testing"
- "github.com/ewhal/nyaa/common"
- "github.com/ewhal/nyaa/model"
+ "github.com/NyaaPantsu/nyaa/common"
+ "github.com/NyaaPantsu/nyaa/model"
)
// Basic test for deadlocks and race conditions
diff --git a/cache/nop/nop.go b/cache/nop/nop.go
index 21c1058..85b5234 100644
--- a/cache/nop/nop.go
+++ b/cache/nop/nop.go
@@ -1,8 +1,8 @@
package nop
import (
- "github.com/ewhal/nyaa/common"
- "github.com/ewhal/nyaa/model"
+ "github.com/NyaaPantsu/nyaa/common"
+ "github.com/NyaaPantsu/nyaa/model"
)
type NopCache struct {