mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-18 22:34:22 +01:00
11 lines
207 B
Go
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)
|
|
}
|