Refactor EventStore to use a more Set-like interface

This commit is contained in:
Alex Gleason
2024-01-08 15:13:10 -06:00
parent f8a0698c3a
commit 937ae1eab6
28 changed files with 111 additions and 111 deletions

View File

@@ -39,6 +39,6 @@ async function usersToEvents() {
created_at: Math.floor(new Date(row.inserted_at).getTime() / 1000),
});
await eventsDB.storeEvent(event);
await eventsDB.add(event);
}
}