break out dependencies/test data into more files

This commit is contained in:
2024-12-21 16:58:59 -08:00
parent 2d43af81fd
commit 9e6d3e6030
4 changed files with 150 additions and 131 deletions

5
src/serverContext.ts Normal file
View File

@@ -0,0 +1,5 @@
import { SharedMemory } from "./sharedMemory";
export interface ServerContext {
sharedMemory: SharedMemory,
}