summaryrefslogtreecommitdiff
path: root/system/admin/handlers.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-09 16:27:33 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-09 16:27:33 -0700
commita7f5427fee80fd638e012de5cfeb48d5be54cbcf (patch)
tree658014a3eada5009de87f31b8c81a47781923d9b /system/admin/handlers.go
parent3b7e6a4cdbda6193cf45b0e60332ca16e68e0010 (diff)
renaming import paths globally to ensure build is using new files, not ones from original repo
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r--system/admin/handlers.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go
index 623bcea..32a8e95 100644
--- a/system/admin/handlers.go
+++ b/system/admin/handlers.go
@@ -12,12 +12,13 @@ import (
"strings"
"time"
- "github.com/bosssauce/ponzu/content"
- "github.com/bosssauce/ponzu/management/editor"
- "github.com/bosssauce/ponzu/management/manager"
- "github.com/bosssauce/ponzu/system/admin/config"
- "github.com/bosssauce/ponzu/system/admin/user"
- "github.com/bosssauce/ponzu/system/db"
+ "../../content"
+ "../../management/editor"
+ "../../management/manager"
+ "../../system/db"
+ "./config"
+ "./user"
+
"github.com/nilslice/jwt"
)