nice little popover

This commit is contained in:
2026-02-19 07:35:30 -06:00
parent 2d994e1117
commit 711d79f9a4
2 changed files with 45 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
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"`
}