summaryrefslogtreecommitdiff
path: root/system/db
diff options
context:
space:
mode:
Diffstat (limited to 'system/db')
-rw-r--r--system/db/config.go2
-rw-r--r--system/db/content.go6
-rw-r--r--system/db/init.go4
-rw-r--r--system/db/user.go2
4 files changed, 7 insertions, 7 deletions
diff --git a/system/db/config.go b/system/db/config.go
index 4dc45e2..bfcafc6 100644
--- a/system/db/config.go
+++ b/system/db/config.go
@@ -8,7 +8,7 @@ import (
"net/url"
"time"
- "../admin/config"
+ "github.com/bosssauce/ponzu/system/admin/config"
"github.com/boltdb/bolt"
"github.com/gorilla/schema"
diff --git a/system/db/content.go b/system/db/content.go
index 740e7b1..d637085 100644
--- a/system/db/content.go
+++ b/system/db/content.go
@@ -8,9 +8,9 @@ import (
"strconv"
"strings"
- "../../content"
- "../../management/editor"
- "../../management/manager"
+ "github.com/bosssauce/ponzu/content"
+ "github.com/bosssauce/ponzu/management/editor"
+ "github.com/bosssauce/ponzu/management/manager"
"github.com/boltdb/bolt"
"github.com/gorilla/schema"
diff --git a/system/db/init.go b/system/db/init.go
index 3c47717..2d73b35 100644
--- a/system/db/init.go
+++ b/system/db/init.go
@@ -4,8 +4,8 @@ import (
"encoding/json"
"log"
- "../../content"
- "../../system/admin/config"
+ "github.com/bosssauce/ponzu/content"
+ "github.com/bosssauce/ponzu/system/admin/config"
"github.com/boltdb/bolt"
"github.com/nilslice/jwt"
diff --git a/system/db/user.go b/system/db/user.go
index f4862b5..a3a0be3 100644
--- a/system/db/user.go
+++ b/system/db/user.go
@@ -5,7 +5,7 @@ import (
"encoding/json"
"errors"
- "../admin/user"
+ "github.com/bosssauce/ponzu/system/admin/user"
"github.com/boltdb/bolt"
)