rename websocket directory to websocket-chat

This commit is contained in:
2025-10-01 07:51:50 -04:00
parent a762bed15c
commit e63615eb46
70 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import type {RequestHandler} from 'express';
export default interface IRoutes {
getGETRoutes(): Record<string, RequestHandler>;
getPOSTRoutes(): Record<string, RequestHandler>;
getPUTRoutes(): Record<string, RequestHandler>;
getPATCHRoutes(): Record<string, RequestHandler>;
getDELETERoutes(): Record<string, RequestHandler>;
}