2024-09-10 22:37:48 -03:00
|
|
|
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()
|
2024-09-10 22:37:48 -03:00
|
|
|
}
|