Replaced bbolt-based database handling with Fyne built-in preferences for storing application settings. Deleted migration logic, database initialization, and error handling related to bbolt, simplifying the codebase and reducing external dependencies.
7 lines
69 B
Go
7 lines
69 B
Go
package setting
|
|
|
|
type Setting struct {
|
|
Code string
|
|
Value string
|
|
}
|