prasi-srv/internal/main/handler/ws-handler.ts

6 lines
153 B
TypeScript

import type { PrasiWsHandler } from "typings/server";
export const createWsHandler = () => {
return { message(ws, message) {} } as PrasiWsHandler;
};