package model import "gorm.io/gorm" type User struct { gorm.Model Name string `gorm:"index;uniqueIndex"` Password string UserBooks []UserBook }