10 lines
137 B
Go
10 lines
137 B
Go
|
package db
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type Config struct {
|
||
|
gorm.Model
|
||
|
Key string `gorm:"key;primaryKey"`
|
||
|
Value string `gorm:"value"`
|
||
|
}
|