diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-09 10:20:31 +0530 | 
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-09 10:20:31 +0530 | 
| commit | 8f2180401fd05ba63633d9559dc156f5ca1573ba (patch) | |
| tree | f3d2f59b04d5940bc5028904d6ce9d551aace86a /auth/auth.go | |
| parent | cba9f19ba50c60576a5961e89c24caefca52d740 (diff) | |
logging in with either username or email
Diffstat (limited to 'auth/auth.go')
| -rw-r--r-- | auth/auth.go | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/auth/auth.go b/auth/auth.go index 6797c91..ae2db9b 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -25,3 +25,9 @@ type AuthClaims struct {  	jwt.RegisteredClaims  	UserID uint `json:"userid"`  } + +type LoginReq struct { +	AccountName string +	Method      string +	Password    string +}  |