subscribe-bot/db/config.go

9 lines
137 B
Go

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