fix: build
This commit is contained in:
@ -1,5 +1,11 @@
|
||||
import { dedupe, ExternalStore, FeedCache, removeUndefined } from "@snort/shared";
|
||||
import { EventKind, NostrEvent, RequestBuilder, SystemInterface, TaggedNostrEvent } from "@snort/system";
|
||||
import {
|
||||
EventKind,
|
||||
NostrEvent,
|
||||
RequestBuilder,
|
||||
SystemInterface,
|
||||
TaggedNostrEvent,
|
||||
} from "@snort/system";
|
||||
|
||||
import { Chat, ChatSystem, ChatType, lastReadInChat } from "@/chat";
|
||||
import { LoginSession } from "@/Utils/Login";
|
||||
@ -12,6 +18,10 @@ export class Nip29ChatSystem extends ExternalStore<Array<Chat>> implements ChatS
|
||||
this.#cache = cache;
|
||||
}
|
||||
|
||||
processEvents(): Promise<void> {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
takeSnapshot(): Chat[] {
|
||||
return this.listChats();
|
||||
}
|
||||
|
Reference in New Issue
Block a user