26 lines
621 B
Go
26 lines
621 B
Go
package cmd
|
|
|
|
type user struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"nombre"`
|
|
Surname1 string `json:"apellido1"`
|
|
Surname2 string `json:"apellido2"`
|
|
Email string `json:"email"`
|
|
Password string `json:"password"`
|
|
AccountType string `json:"type"`
|
|
}
|
|
|
|
type userNoPass struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"nombre"`
|
|
Surname1 string `json:"apellido1"`
|
|
Surname2 string `json:"apellido2"`
|
|
Email string `json:"email"`
|
|
AccountType string `json:"type"`
|
|
}
|
|
|
|
type response struct {
|
|
Contents any `json:"contents"`
|
|
Success bool `json:"success"`
|
|
}
|