a0dff914 by astaxie

change third repo from other to beego

1 parent c9418966
1 package cache 1 package cache
2 2
3 import ( 3 import (
4 "code.google.com/p/vitess/go/memcache"
5 "encoding/json" 4 "encoding/json"
6 "errors" 5 "errors"
6 "github.com/beego/memcache"
7 ) 7 )
8 8
9 type MemcacheCache struct { 9 type MemcacheCache struct {
......
...@@ -3,7 +3,7 @@ package cache ...@@ -3,7 +3,7 @@ package cache
3 import ( 3 import (
4 "encoding/json" 4 "encoding/json"
5 "errors" 5 "errors"
6 "github.com/garyburd/redigo/redis" 6 "github.com/beego/redigo/redis"
7 ) 7 )
8 8
9 var ( 9 var (
......
...@@ -4,7 +4,7 @@ package config ...@@ -4,7 +4,7 @@ package config
4 4
5 import ( 5 import (
6 "errors" 6 "errors"
7 "github.com/clbanning/x2j" 7 "github.com/beego/x2j"
8 "io/ioutil" 8 "io/ioutil"
9 "os" 9 "os"
10 "strconv" 10 "strconv"
......
...@@ -4,7 +4,7 @@ import ( ...@@ -4,7 +4,7 @@ import (
4 "bytes" 4 "bytes"
5 "encoding/json" 5 "encoding/json"
6 "errors" 6 "errors"
7 "github.com/wendal/goyaml2" 7 "github.com/beego/goyaml2"
8 "io/ioutil" 8 "io/ioutil"
9 "log" 9 "log"
10 "os" 10 "os"
......
...@@ -9,7 +9,7 @@ package session ...@@ -9,7 +9,7 @@ package session
9 9
10 import ( 10 import (
11 "database/sql" 11 "database/sql"
12 _ "github.com/go-sql-driver/mysql" 12 _ "github.com/beego/mysql"
13 "sync" 13 "sync"
14 "time" 14 "time"
15 ) 15 )
......
1 package session 1 package session
2 2
3 import ( 3 import (
4 "github.com/garyburd/redigo/redis" 4 "github.com/beego/redigo/redis"
5 "strconv" 5 "strconv"
6 "strings" 6 "strings"
7 "sync" 7 "sync"
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!