Add structs.go

This commit is contained in:
raul 2024-12-06 13:35:43 +01:00
parent b0ad56d82b
commit 788e8b46a9
Signed by: raul
GPG Key ID: C1AA797073F17129
1 changed files with 8 additions and 0 deletions

8
cmd/structs.go Normal file
View File

@ -0,0 +1,8 @@
package cmd
type user struct {
Name string `json:"name"`
Surname1 string `json:"fSurname"`
Surname2 string `json:"lSurname"`
Email string `json:"email"`
}