refactor(gateway): split server helpers

This commit is contained in:
Peter Steinberger
2026-01-03 19:33:41 +01:00
parent ce92fac983
commit 6a125b554b
7 changed files with 1722 additions and 1447 deletions

View File

@@ -0,0 +1,8 @@
import type { ErrorShape } from "./protocol/index.js";
export type DedupeEntry = {
ts: number;
ok: boolean;
payload?: unknown;
error?: ErrorShape;
};