go-nostr/sdk/hints/interface.go
2024-09-16 22:23:55 -03:00

10 lines
203 B
Go

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)
PrintScores()
}