db: remove unused KV struct

The KV struct was marked as "For future use" with a TODO asking if it's
used anywhere. It was never used and can be safely removed.
This commit is contained in:
Kristoffer Dalby 2026-01-21 10:52:15 +00:00
parent 3bf01d4cee
commit 96ccacaae2

View file

@ -46,13 +46,6 @@ const (
contextTimeoutSecs = 10
)
// KV is a key-value store in a psql table. For future use...
// TODO(kradalby): Is this used for anything?
type KV struct {
Key string
Value string
}
type HSDatabase struct {
DB *gorm.DB
cfg *types.Config