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/routes/ping.routes.ts

9 lines
169 B
TypeScript

import {Router} from "express";
import {ping} from "../controllers/ping.controllers";
const router: Router = Router();
router.get('/', ping);
export default router;