phase 1 backend
This commit is contained in:
parent
a0897c2d38
commit
9653e55453
26 changed files with 3225 additions and 0 deletions
8
backend/src/routes/jobSearchRoutes.ts
Normal file
8
backend/src/routes/jobSearchRoutes.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import express from 'express';
|
||||
import { searchLocalJobOffers } from '../controllers/jobSearchController';
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get('/api/jobs', searchLocalJobOffers);
|
||||
|
||||
export default router;
|
Loading…
Add table
Add a link
Reference in a new issue