mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-18 14:24:21 +01:00
14 lines
342 B
Go
14 lines
342 B
Go
package notifications
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type Store interface {
|
|
Register(ctx context.Context, pubkey string, url string) error
|
|
GetRegistrations(ctx context.Context, pubkey string) ([]string, error)
|
|
Unsubscribe(ctx context.Context, pubkey string, url string) error
|
|
RemoveExpired(ctx context.Context, before time.Time) error
|
|
}
|