Add BadgerDB #1

Merged
cerbervs merged 5 commits from feat/badgerdb-integration into main 2025-08-31 23:32:47 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 0419251fd1 - Show all commits

View File

@ -25,7 +25,6 @@ func newTestStore(t *testing.T) *badgerStore {
return store return store
} }
// generic subtest runner
type subtest struct { type subtest struct {
name string name string
run func(t *testing.T) run func(t *testing.T)

View File

@ -1 +1,7 @@
package internal package internal
import "testing"
func TestNewRouteCache(t *testing.T) {
// TODO: implement
}