(Proper) Initial commit
This commit is contained in:
parent
48c0059860
commit
32796e4026
19 changed files with 6094 additions and 97 deletions
9
backend/routes/ping.routes.ts
Normal file
9
backend/routes/ping.routes.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import {Router} from "express";
|
||||
import {ping} from "../controllers/ping.controllers";
|
||||
|
||||
const router: Router = Router();
|
||||
|
||||
router.get('/', ping);
|
||||
|
||||
|
||||
export default router;
|
Reference in a new issue