package gmodel import "gorm.io/gorm" type AllModelsGen struct { } func NewAllModels(gdb *gorm.DB) *AllModelsGen { models := &AllModelsGen{ } return models }