Compare commits

..

1 Commits

Author SHA1 Message Date
bcc8de99db Added config entity 2025-11-14 20:35:59 +01:00

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