| 3 | import { logger } from "./logger" |
| 4 | |
| 5 | interface ServerSocketOptions { |
| 6 | redisUrl: string |
| 7 | redisToken: string |
| 8 | incomingSchema: z.ZodSchema |
| 9 | outgoingSchema: z.ZodSchema |
| 10 | } |
| 11 | |
| 12 | export interface SystemEvents { |
| 13 | onConnect: void |
nothing calls this directly
no outgoing calls
no test coverage detected