package models import "github.com/google/uuid" type User struct { ID int64 `json:"-"` Name string `json:"name"` UUID uuid.UUID `json:"uuid"` Password string `json:"-"` }