package db import "gorm.io/gorm" type Config struct { gorm.Model Key string `gorm:"key;primaryKey"` Value string `gorm:"value"` }