1package db 2 3import "gorm.io/gorm" 4 5type YdlEntry struct { 6 gorm.Model 7 Title string 8 Link string 9 Format string 10 Output_folder string 11}