drahoot/cmd/structs.go

17 lines
378 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 response struct {
Contents any `json:"contents"`
Success bool `json:"success"`
}