diff options
Diffstat (limited to '')
-rw-r--r-- | pkg/model/users.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/model/users.go b/pkg/model/users.go index e4b4bf0..943d161 100644 --- a/pkg/model/users.go +++ b/pkg/model/users.go @@ -11,12 +11,12 @@ type User struct { } type UserLogin struct { - Username string `json:"username"` - Password string `json:"password"` + Username string + Password string } type UserRegistration struct { - Username string `json:"username"` - Password string `json:"password"` - Email string `json:"email"` + Username string + Password string + Email string } |