add shared memory object to context

This commit is contained in:
2024-12-21 16:51:52 -08:00
parent 3cb15f7a5d
commit 0bb17e1b08
2 changed files with 14 additions and 3 deletions

View File

@@ -1 +1,9 @@
export const
import { System } from "./generated/graphql";
export interface SharedMemory {
systems: System[],
};
export const sharedMemory: SharedMemory = {
systems: [],
};