This repository has been archived on 2025-08-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lucida-queue/backend/controllers/ping.controllers.ts

5 lines
No EOL
138 B
TypeScript

import {Request, Response} from 'express';
export function ping(_req: Request, res: Response): void {
res.status(200).send('pong');
}