diff options
author | Unknwon <u@gogs.io> | 2016-12-21 04:08:23 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-12-21 04:08:23 -0500 |
commit | 67380cf47b6dfd6ff9999acc73dd7da8f620948f (patch) | |
tree | 48ff5c4f243346df3cb784f52b8021d417b1787a /models | |
parent | 39fdb0f9c4f1668b47ff43665d525608a87fb0e6 (diff) |
Minor code fix
Diffstat (limited to 'models')
-rw-r--r-- | models/user.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/models/user.go b/models/user.go index 0fcccae0..a027a047 100644 --- a/models/user.go +++ b/models/user.go @@ -23,6 +23,7 @@ import ( "github.com/Unknwon/com" "github.com/go-xorm/xorm" "github.com/nfnt/resize" + "golang.org/x/crypto/pbkdf2" "github.com/gogits/git-module" api "github.com/gogits/go-gogs-client" @@ -32,8 +33,6 @@ import ( "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/markdown" "github.com/gogits/gogs/modules/setting" - - "golang.org/x/crypto/pbkdf2" ) type UserType int |