package download import "gorm.io/gorm" type Info struct { gorm.Model URL string `gorm:"not null"` Version string `gorm:"not null"` FileName string `gorm:"not null"` FileSize string `gorm:"not null"` }