Migrated from GORM to bbolt for lightweight key-value storage, better aligning with project requirements. Updated repository methods to utilize bbolt's native APIs and removed dependencies associated with GORM.
7 lines
98 B
Go
7 lines
98 B
Go
package setting
|
|
|
|
type Setting struct {
|
|
Code string `json:"code"`
|
|
Value string `json:"value"`
|
|
}
|