initial try

This commit is contained in:
2025-02-11 19:13:06 +01:00
parent 83de01b349
commit 157a215e87
8 changed files with 468 additions and 2 deletions

View File

@@ -60,6 +60,17 @@ type DbTag struct {
Keys []string `json:"key"`
}
// required for ui
func (entry DbEntry) FilterValue() string {
return entry.Preview
}
func (entry DbEntry) Description() string {
return "Val: " + entry.Preview
}
func (entry DbEntry) Title() string {
return "Key: " + entry.Key
}
const BucketData string = "data"
func GetDbFile(file string) string {