diff options
Diffstat (limited to 'web/controller/index.go')
| -rw-r--r-- | web/controller/index.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/controller/index.go b/web/controller/index.go index c19d1b6e..ee39875a 100644 --- a/web/controller/index.go +++ b/web/controller/index.go @@ -5,18 +5,18 @@ import ( "text/template" "time" - "x-ui/logger" - "x-ui/web/service" - "x-ui/web/session" + "github.com/mhsanaei/3x-ui/logger" + "github.com/mhsanaei/3x-ui/web/service" + "github.com/mhsanaei/3x-ui/web/session" "github.com/gin-contrib/sessions" "github.com/gin-gonic/gin" ) type LoginForm struct { - Username string `json:"username" form:"username"` - Password string `json:"password" form:"password"` - TwoFactorCode string `json:"twoFactorCode" form:"twoFactorCode"` + Username string `json:"username" form:"username"` + Password string `json:"password" form:"password"` + TwoFactorCode string `json:"twoFactorCode" form:"twoFactorCode"` } type IndexController struct { |
