Add settings persistance on backend

This commit is contained in:
2024-09-27 14:30:49 +02:00
parent 1fd95e2abf
commit f99c93ac23
10 changed files with 273 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
package models
type Settings struct {
UserID int `json:"userId"`
Settings map[string]interface{} `json:"settings"`
}