go-nostr/sdk/hints/interface.go

10 lines
203 B
Go
Raw Permalink Normal View History

package hints
import "github.com/nbd-wtf/go-nostr"
type HintsDB interface {
TopN(pubkey string, n int) []string
Save(pubkey string, relay string, key HintKey, score nostr.Timestamp)
2024-09-16 22:23:55 -03:00
PrintScores()
}