package models import "gorm.io/gorm" type Resource struct { gorm.Model Name string `json:"name"` Url string `json:"url"` Type string `json:"type"` }