diff options
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -15,7 +15,7 @@ import ( "path" "strings" - "github.com/Unknwon/com" + "github.com/unknwon/com" "github.com/go-macaron/binding" "github.com/go-macaron/cache" "github.com/go-macaron/captcha" @@ -30,20 +30,20 @@ import ( log "gopkg.in/clog.v1" "gopkg.in/macaron.v1" - "github.com/gogs/gogs/models" - "github.com/gogs/gogs/pkg/bindata" - "github.com/gogs/gogs/pkg/context" - "github.com/gogs/gogs/pkg/form" - "github.com/gogs/gogs/pkg/mailer" - "github.com/gogs/gogs/pkg/setting" - "github.com/gogs/gogs/pkg/template" - "github.com/gogs/gogs/routes" - "github.com/gogs/gogs/routes/admin" - apiv1 "github.com/gogs/gogs/routes/api/v1" - "github.com/gogs/gogs/routes/dev" - "github.com/gogs/gogs/routes/org" - "github.com/gogs/gogs/routes/repo" - "github.com/gogs/gogs/routes/user" + "gogs.io/gogs/models" + "gogs.io/gogs/pkg/bindata" + "gogs.io/gogs/pkg/context" + "gogs.io/gogs/pkg/form" + "gogs.io/gogs/pkg/mailer" + "gogs.io/gogs/pkg/setting" + "gogs.io/gogs/pkg/template" + "gogs.io/gogs/routes" + "gogs.io/gogs/routes/admin" + apiv1 "gogs.io/gogs/routes/api/v1" + "gogs.io/gogs/routes/dev" + "gogs.io/gogs/routes/org" + "gogs.io/gogs/routes/repo" + "gogs.io/gogs/routes/user" ) var Web = cli.Command{ |