Added config entity

This commit is contained in:
PB
2025-11-14 20:35:59 +01:00
parent 4b5d681efe
commit bcc8de99db

7
config/entity/setting.go Normal file
View File

@@ -0,0 +1,7 @@
package config
type Config struct {
ID string `db:"id" json:"id"`
Name string `db:"name" json:"name"`
Value string `db:"value" json:"value"`
}