Refactor ServerCoordinator and project structure for clearer durable objects organization and module imports.

This commit is contained in:
geoffsee
2025-06-18 15:53:17 -04:00
parent afc46fe2c3
commit 02ede2b0f6
7 changed files with 31 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ interface Env {
EMAIL_SERVICE: any;
// Durable Objects
SERVER_COORDINATOR: import("packages/server/ServerCoordinator.ts");
SERVER_COORDINATOR: import("packages/server/durable-objects/ServerCoordinator.ts");
// Handles serving static assets
ASSETS: Fetcher;