mirror of
https://github.com/wisplite/raster.git
synced 2026-05-01 06:32:44 -05:00
7 lines
187 B
Go
7 lines
187 B
Go
package models
|
|
|
|
// Settings are stored in the database as key-value pairs.
|
|
type Settings struct {
|
|
Key string `json:"key" gorm:"primaryKey"`
|
|
Value string `json:"value"`
|
|
} |