mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-11-15 16:50:16 +01:00
9 lines
188 B
Go
9 lines
188 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)
|
|
}
|