1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-10 13:41:01 +00:00

Merge pull request #3100 from godcong/master

change github.com/garyburd/redigo to newest branch github.com/gomodul…
This commit is contained in:
astaxie
2018-04-20 19:40:30 +08:00
committed by GitHub
5 changed files with 34 additions and 31 deletions

View File

@ -14,9 +14,9 @@
// Package redis for cache provider
//
// depend on github.com/garyburd/redigo/redis
// depend on github.com/gomodule/redigo/redis
//
// go install github.com/garyburd/redigo/redis
// go install github.com/gomodule/redigo/redis
//
// Usage:
// import(
@ -36,7 +36,7 @@ import (
"strconv"
"time"
"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
"github.com/astaxie/beego/cache"
)