package models import "gorm.io/gorm" type User struct { gorm.Model Password string Username string Email string Phone string Name string Channels []Channel `gorm:"foreignKey:UserId"` }