sdk/hints: sqlite backend and tests.

This commit is contained in:
fiatjaf
2024-09-16 22:23:55 -03:00
parent 4c9ab850a5
commit 2c09338ecb
11 changed files with 380 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
package test
import (
"testing"
"github.com/nbd-wtf/go-nostr/sdk/hints/memory"
)
func TestMemoryHints(t *testing.T) {
runTestWith(t, memory.NewHintDB())
}