diff --git a/cmd/structs.go b/cmd/structs.go new file mode 100644 index 0000000..66e1983 --- /dev/null +++ b/cmd/structs.go @@ -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"` +}