package common import "github.com/google/uuid" type UserResult struct { Id uuid.UUID UserName string Password string } type UserResultList struct { Result []*UserResult }