mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-12-01 08:26:37 +01:00
12 lines
161 B
Go
12 lines
161 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nbd-wtf/go-nostr/sdk/hints/memory"
|
|
)
|
|
|
|
func TestMemoryHints(t *testing.T) {
|
|
runTestWith(t, memory.NewHintDB())
|
|
}
|