1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 11:44:15 +00:00

change third repo from other to beego

This commit is contained in:
astaxie 2013-11-21 22:19:19 +08:00
parent c94189668f
commit a0dff9148a
6 changed files with 6 additions and 6 deletions

2
cache/memcache.go vendored
View File

@ -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
View File

@ -3,7 +3,7 @@ package cache
import (
"encoding/json"
"errors"
"github.com/garyburd/redigo/redis"
"github.com/beego/redigo/redis"
)
var (

View File

@ -4,7 +4,7 @@ package config
import (
"errors"
"github.com/clbanning/x2j"
"github.com/beego/x2j"
"io/ioutil"
"os"
"strconv"

View File

@ -4,7 +4,7 @@ import (
"bytes"
"encoding/json"
"errors"
"github.com/wendal/goyaml2"
"github.com/beego/goyaml2"
"io/ioutil"
"log"
"os"

View File

@ -9,7 +9,7 @@ package session
import (
"database/sql"
_ "github.com/go-sql-driver/mysql"
_ "github.com/beego/mysql"
"sync"
"time"
)

View File

@ -1,7 +1,7 @@
package session
import (
"github.com/garyburd/redigo/redis"
"github.com/beego/redigo/redis"
"strconv"
"strings"
"sync"