addNostrEventQueueを移動

This commit is contained in:
studiokaiji
2023-10-25 13:55:19 +09:00
parent 158609c8ef
commit 8a596892ea

View File

@@ -137,3 +137,7 @@ func getReplaceableIdentifier(indexHtmlIdentifier, filePath string) string {
} }
var nostrEventsQueue []*nostr.Event var nostrEventsQueue []*nostr.Event
func addNostrEventQueue(event *nostr.Event) {
nostrEventsQueue = append(nostrEventsQueue, event)
}