Golang migrator added. Need switch to gooos.

This commit is contained in:
valitovgaziz
2024-08-05 23:27:46 +05:00
parent 87de968e7f
commit 25126c176f
8 changed files with 25 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
package models
import "github.com/google/uuid"
type User struct {
Id uuid.UUID `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Password string `json:"password"`
Phone string `json:"phone"`
}