Skip to content

Commit

Permalink
style: Add go.mod and update vendor
Browse files Browse the repository at this point in the history
Change-Id: Ib0e6dcc73d4ce97b8a0413c65af5f1cc4d817e4b
  • Loading branch information
andeya committed Aug 8, 2019
1 parent b7d8816 commit 7eb9bf0
Show file tree
Hide file tree
Showing 1,477 changed files with 624,348 additions and 45,277 deletions.
2 changes: 1 addition & 1 deletion ext/db/directsql/sqlengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"errors"
"fmt"

"github.com/go-xorm/core"
"xorm.io/core"
"github.com/henrylee2cn/faygo"
)

Expand Down
2 changes: 1 addition & 1 deletion ext/db/directsql/sqlhelper.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strconv"
"time"

"github.com/go-xorm/core"
"xorm.io/core"
)

//-------解析参数的函数------------
Expand Down
2 changes: 1 addition & 1 deletion ext/db/directsql/sqlmanage.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"sync"

"github.com/fsnotify/fsnotify"
"github.com/go-xorm/core"
"xorm.io/core"
"github.com/henrylee2cn/faygo"
faygoxorm "github.com/henrylee2cn/faygo/ext/db/xorm"
confpkg "github.com/henrylee2cn/ini"
Expand Down
2 changes: 1 addition & 1 deletion ext/db/directsql/sqlservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"errors"
"reflect"

"github.com/go-xorm/core"
"xorm.io/core"
"github.com/henrylee2cn/faygo"
)

Expand Down
2 changes: 1 addition & 1 deletion ext/db/xorm/logger.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package xorm

import (
"github.com/go-xorm/core"
"xorm.io/core"

"github.com/henrylee2cn/faygo"
"github.com/henrylee2cn/faygo/logging"
Expand Down
2 changes: 1 addition & 1 deletion ext/db/xorm/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"strings"

"github.com/go-xorm/core"
"xorm.io/core"
"github.com/go-xorm/xorm"

// _ "github.com/denisenkom/go-mssqldb" //mssql
Expand Down
43 changes: 43 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
module github.com/henrylee2cn/faygo

go 1.12

require (
github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
github.com/couchbase/go-couchbase v0.0.0-20190808141609-0a5dfbe71f2f
github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d // indirect
github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b // indirect
github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/edsrzf/mmap-go v1.0.0 // indirect
github.com/elazarl/go-bindata-assetfs v1.0.0
github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect
github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4
github.com/fsnotify/fsnotify v1.4.7
github.com/garyburd/redigo v1.6.0
github.com/go-sql-driver/mysql v1.4.1
github.com/go-xorm/xorm v0.7.6
github.com/gorilla/websocket v1.4.0
github.com/henrylee2cn/goutil v0.0.0-20190807075143-e8afa09140e9
github.com/henrylee2cn/ini v1.29.0
github.com/jinzhu/gorm v1.9.10
github.com/jmoiron/sqlx v1.2.0
github.com/json-iterator/go v1.1.7
github.com/lib/pq v1.2.0
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726 // indirect
github.com/siddontang/ledisdb v0.0.0-20190202134119-8ceb77e66a92
github.com/siddontang/rdb v0.0.0-20150307021120-fc89ed2e418d // indirect
github.com/ssdb/gossdb v0.0.0-20180723034631-88f6b59b84ec
github.com/stretchr/testify v1.3.0
github.com/syndtr/goleveldb v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80
golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
gopkg.in/dgrijalva/jwt-go.v3 v3.2.0
xorm.io/core v0.7.0
)
266 changes: 266 additions & 0 deletions go.sum

Large diffs are not rendered by default.

202 changes: 202 additions & 0 deletions vendor/github.com/bradfitz/gomemcache/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7eb9bf0

Please sign in to comment.