Remove accidentally added DittoAPIStore

This commit is contained in:
Alex Gleason 2025-02-19 22:02:49 -06:00
parent 841b83f573
commit 351d03bde7
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -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.');
}
}