mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-18 05:42:20 +01:00
10 lines
203 B
Go
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()
|
|
}
|