mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-20 15:24:23 +01:00
13 lines
275 B
Go
13 lines
275 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)
|
|
RemoveExpired(ctx context.Context, before time.Time) error
|
|
}
|