12 lines
196 B
Go
12 lines
196 B
Go
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Config struct {
|
|
gorm.Model
|
|
Key string `json:"key" binding:"required" gorm:"unique;not null"`
|
|
Value string `json:"value" binding:"required"`
|
|
}
|