Files
lspd/notifications/store.go
2023-06-30 16:36:29 +02:00

11 lines
207 B
Go

package notifications
import (
"context"
)
type Store interface {
Register(ctx context.Context, pubkey string, url string) error
GetRegistrations(ctx context.Context, pubkey string) ([]string, error)
}