mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 00:00:54 +00:00
change third repo from other to beego
This commit is contained in:
parent
c94189668f
commit
a0dff9148a
2
cache/memcache.go
vendored
2
cache/memcache.go
vendored
@ -1,9 +1,9 @@
|
||||
package cache
|
||||
|
||||
import (
|
||||
"code.google.com/p/vitess/go/memcache"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"github.com/beego/memcache"
|
||||
)
|
||||
|
||||
type MemcacheCache struct {
|
||||
|
2
cache/redis.go
vendored
2
cache/redis.go
vendored
@ -3,7 +3,7 @@ package cache
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
"github.com/beego/redigo/redis"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -4,7 +4,7 @@ package config
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/clbanning/x2j"
|
||||
"github.com/beego/x2j"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"strconv"
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"github.com/wendal/goyaml2"
|
||||
"github.com/beego/goyaml2"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
|
@ -9,7 +9,7 @@ package session
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
_ "github.com/beego/mysql"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
@ -1,7 +1,7 @@
|
||||
package session
|
||||
|
||||
import (
|
||||
"github.com/garyburd/redigo/redis"
|
||||
"github.com/beego/redigo/redis"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
|
Loading…
Reference in New Issue
Block a user