package auth import "gorm.io/gorm" type Profile struct { gorm.Model Id int `gorm:"primaryKey"` Username string Password string }