From a6d49a5e70c52bac1e85522ea752297e4f1e728d Mon Sep 17 00:00:00 2001 From: konrad Date: Wed, 3 Oct 2018 19:32:05 +0200 Subject: [PATCH] Fixed lint --- routes/api/v1/user_update_password.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/api/v1/user_update_password.go b/routes/api/v1/user_update_password.go index a61bbd000..55a9a478c 100644 --- a/routes/api/v1/user_update_password.go +++ b/routes/api/v1/user_update_password.go @@ -6,6 +6,7 @@ import ( "net/http" ) +// UserPassword holds a user password. Used to update it. type UserPassword struct { Password string `json:"password"` }