diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-18 09:35:09 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-18 09:35:09 -0400 |
commit | 49c01c0b5748a5ab5529b39cd1e69b21eaf3091a (patch) | |
tree | 3ac7673a65f94d349e18e7133a4049e6a88d015c | |
parent | f8571f4db1b0b8794fe1a7b614e35a5dd8b70f3e (diff) | |
download | gitea-49c01c0b5748a5ab5529b39cd1e69b21eaf3091a.tar.gz gitea-49c01c0b5748a5ab5529b39cd1e69b21eaf3091a.zip |
Fix import path
-rw-r--r-- | models/access.go | 2 | ||||
-rw-r--r-- | models/models.go | 2 | ||||
-rw-r--r-- | routers/install.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/models/access.go b/models/access.go index f20f8fa7cc..970f4a941f 100644 --- a/models/access.go +++ b/models/access.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/lunny/xorm" + "github.com/go-xorm/xorm" ) // Access types. diff --git a/models/models.go b/models/models.go index 6c323684a8..1eb418bac7 100644 --- a/models/models.go +++ b/models/models.go @@ -11,9 +11,9 @@ import ( "strings" _ "github.com/go-sql-driver/mysql" + "github.com/go-xorm/xorm" _ "github.com/gogits/cache" _ "github.com/lib/pq" - "github.com/lunny/xorm" "github.com/gogits/gogs/modules/base" ) diff --git a/routers/install.go b/routers/install.go index f09401370b..81b164038c 100644 --- a/routers/install.go +++ b/routers/install.go @@ -12,7 +12,7 @@ import ( "github.com/Unknwon/goconfig" "github.com/go-martini/martini" - "github.com/lunny/xorm" + "github.com/go-xorm/xorm" qlog "github.com/qiniu/log" "github.com/gogits/gogs/models" |