1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 17:44:12 +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 package cache
import ( import (
"code.google.com/p/vitess/go/memcache"
"encoding/json" "encoding/json"
"errors" "errors"
"github.com/beego/memcache"
) )
type MemcacheCache struct { type MemcacheCache struct {

2
cache/redis.go vendored
View File

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

View File

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

View File

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

View File

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

View File

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