Browse Source

Fix import path

tags/v0.9.99
Unknown 10 years ago
parent
commit
49c01c0b57
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      models/access.go
  2. 1
    1
      models/models.go
  3. 1
    1
      routers/install.go

+ 1
- 1
models/access.go View File

@@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/lunny/xorm"
"github.com/go-xorm/xorm"
)

// Access types.

+ 1
- 1
models/models.go View File

@@ -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"
)

+ 1
- 1
routers/install.go View File

@@ -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"

Loading…
Cancel
Save