package models import "gorm.io/gorm" type User struct { gorm.Model UUID string Email string Password string Roles []Role Sessions []Session }