package models import "gorm.io/gorm" type User struct { gorm.Model Login string `gorm:"unique"` Password string Salt string }