()
| 8 | private constructor() {} |
| 9 | |
| 10 | public static getInstance(): UsersController { |
| 11 | if (!UsersController.instance) { |
| 12 | UsersController.instance = new UsersController(); |
| 13 | } |
| 14 | return UsersController.instance; |
| 15 | } |
| 16 | |
| 17 | public async SayHelloEveryOne(req: Request, res: Response, next: NextFunction) { |
| 18 | const body = req.body as SampleArrayRequestBody[]; |
nothing calls this directly
no outgoing calls
no test coverage detected