mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { System } from "./generated/graphql";
|
|
|
|
export interface SharedMemory {
|
|
systems: System[],
|
|
};
|
|
|
|
export const sharedMemory: SharedMemory = {
|
|
systems: [],
|
|
};
|