Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
a0dff914
Commit
a0dff914
authored
Nov 21, 2013
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change third repo from other to beego
parent
c9418966
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
memcache.go
cache/memcache.go
+1
-1
redis.go
cache/redis.go
+1
-1
xml.go
config/xml.go
+1
-1
yaml.go
config/yaml.go
+1
-1
sess_mysql.go
session/sess_mysql.go
+1
-1
sess_redis.go
session/sess_redis.go
+1
-1
No files found.
cache/memcache.go
View file @
a0dff914
package
cache
import
(
"code.google.com/p/vitess/go/memcache"
"encoding/json"
"errors"
"github.com/beego/memcache"
)
type
MemcacheCache
struct
{
...
...
cache/redis.go
View file @
a0dff914
...
...
@@ -3,7 +3,7 @@ package cache
import
(
"encoding/json"
"errors"
"github.com/
garyburd
/redigo/redis"
"github.com/
beego
/redigo/redis"
)
var
(
...
...
config/xml.go
View file @
a0dff914
...
...
@@ -4,7 +4,7 @@ package config
import
(
"errors"
"github.com/
clbanning
/x2j"
"github.com/
beego
/x2j"
"io/ioutil"
"os"
"strconv"
...
...
config/yaml.go
View file @
a0dff914
...
...
@@ -4,7 +4,7 @@ import (
"bytes"
"encoding/json"
"errors"
"github.com/
wendal
/goyaml2"
"github.com/
beego
/goyaml2"
"io/ioutil"
"log"
"os"
...
...
session/sess_mysql.go
View file @
a0dff914
...
...
@@ -9,7 +9,7 @@ package session
import
(
"database/sql"
_
"github.com/
go-sql-driver
/mysql"
_
"github.com/
beego
/mysql"
"sync"
"time"
)
...
...
session/sess_redis.go
View file @
a0dff914
package
session
import
(
"github.com/
garyburd
/redigo/redis"
"github.com/
beego
/redigo/redis"
"strconv"
"strings"
"sync"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment