mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
Remove accidentally added DittoAPIStore
This commit is contained in:
parent
841b83f573
commit
351d03bde7
1 changed files with 0 additions and 38 deletions
|
|
@ -1,38 +0,0 @@
|
|||
import type {
|
||||
NostrEvent,
|
||||
NostrFilter,
|
||||
NostrRelayCLOSED,
|
||||
NostrRelayCOUNT,
|
||||
NostrRelayEOSE,
|
||||
NostrRelayEVENT,
|
||||
NRelay,
|
||||
} from '@nostrify/nostrify';
|
||||
|
||||
export class DittoAPIStore implements NRelay {
|
||||
req(
|
||||
filters: NostrFilter[],
|
||||
opts?: { signal?: AbortSignal },
|
||||
): AsyncIterable<NostrRelayEVENT | NostrRelayEOSE | NostrRelayCLOSED> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
close(): Promise<void> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
event(event: NostrEvent, opts?: { signal?: AbortSignal }): Promise<void> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
query(filters: NostrFilter[], opts?: { signal?: AbortSignal }): Promise<NostrEvent[]> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
count(filters: NostrFilter[], opts?: { signal?: AbortSignal }): Promise<NostrRelayCOUNT[2]> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
remove(filters: NostrFilter[], opts?: { signal?: AbortSignal }): Promise<void> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue