summaryrefslogtreecommitdiff
path: root/system/db
diff options
context:
space:
mode:
authornanohard <nanohard@users.noreply.github.com>2018-08-18 19:29:35 -0500
committerSteve Manuel <nilslice@gmail.com>2018-08-19 21:08:03 -0600
commit3c15499b7dd96f68262f59a368cf215b4b4c39a1 (patch)
tree12202f2599bba2f4107d679363480d56cf361f79 /system/db
parent83d740d8437d6cd55ad5ac8e3a293221c24260df (diff)
Replaced satori/go.uuid with gofrs/uuid. (#268)
* Changed files to use new uuid pkg. * Replace satori/go.uuid with gofrs/uuid. Closes #257. * Deleted satori/go.uuid folder. Closes #257.
Diffstat (limited to 'system/db')
-rw-r--r--system/db/content.go2
-rw-r--r--system/db/upload.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/system/db/content.go b/system/db/content.go
index b96852e..43d6023 100644
--- a/system/db/content.go
+++ b/system/db/content.go
@@ -16,8 +16,8 @@ import (
"github.com/ponzu-cms/ponzu/system/search"
"github.com/boltdb/bolt"
+ "github.com/gofrs/uuid"
"github.com/gorilla/schema"
- uuid "github.com/satori/go.uuid"
)
// IsValidID checks that an ID from a DB target is valid.
diff --git a/system/db/upload.go b/system/db/upload.go
index b7171dd..2311ef0 100644
--- a/system/db/upload.go
+++ b/system/db/upload.go
@@ -14,8 +14,8 @@ import (
"github.com/ponzu-cms/ponzu/system/item"
"github.com/boltdb/bolt"
+ "github.com/gofrs/uuid"
"github.com/gorilla/schema"
- uuid "github.com/satori/go.uuid"
)
// SetUpload stores information about files uploaded to the system