Files
2026-02-19 07:35:30 -06:00

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"`
}