subscribe-bot/db/config.go

10 lines
137 B
Go
Raw Normal View History

2021-07-21 22:09:06 +00:00
package db
import "gorm.io/gorm"
type Config struct {
gorm.Model
Key string `gorm:"key;primaryKey"`
Value string `gorm:"value"`
}