From 86341c21e1688031dc469168ac8be1d6ef47c3f3 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sat, 15 Nov 2025 13:30:25 +0100 Subject: [PATCH] Added Setting entity --- config/entity/setting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/entity/setting.go b/config/entity/setting.go index 42d8e66..7abae3e 100644 --- a/config/entity/setting.go +++ b/config/entity/setting.go @@ -1,6 +1,6 @@ package config -type Config struct { +type Setting struct { ID string `db:"id" json:"id"` Name string `db:"name" json:"name"` Value string `db:"value" json:"value"`