chore(server): remove unused empty WebsocketModule - #92
Merged
rodriguecyber merged 1 commit intoAug 9, 2026
Conversation
The placeholder under apps/server/src/common/websocket/ had no importers; real WebSocket gateways live in agents.gateway.ts. Deleting the empty module avoids misleading contributors into thinking sockets are unfinished. Verified with repo-wide search: zero references to WebsocketModule remain. Server build still needs Prisma/env setup on a clean machine (pre-existing). Fixes #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Deletes
apps/server/src/common/websocket/, an empty NestJS placeholder whose comment promised gateways “in later phases” — while real gateways already live inapps/server/src/agents/agents.gateway.ts.Why delete
WebsocketModule(repo-wide TypeScript search).Verification
WebsocketModule/common/websocket: no remaining references.npm run build --workspace=@docksight/serverstill needs Prisma client generation +DATABASE_URLon a bare machine (pre-existing; unrelated to this deletion). No compile errors referenced the removed module.Fixes #27