1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-20 03:17:04 +00:00

replace boltdb/bolt to coreos/bbolt for sessions/sessiondb/boltdb

Former-commit-id: 0451425be0550e6a6f0c430e036452b60e393789
This commit is contained in:
Gerasimos (Makis) Maropoulos
2018-02-07 01:06:42 +02:00
parent 1675203e5f
commit 5d62b5d428
6 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
//
// Article: https://medium.com/@kataras/a-url-shortener-service-using-go-iris-and-bolt-4182f0b00ae7
//
// $ go get github.com/boltdb/bolt/...
// $ go get github.com/coreos/bbolt
// $ go get github.com/satori/go.uuid
// $ cd $GOPATH/src/github.com/kataras/iris/_examples/tutorial/url-shortener
// $ go build

View File

@@ -3,7 +3,7 @@ package main
import (
"bytes"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
// Panic panics, change it if you don't want to panic on critical INITIALIZE-ONLY-ERRORS