v4.js 200 B

123456789
  1. 'use strict';
  2. import express from 'express';
  3. import Food from '../controller/shopping/shop'
  4. const router = express.Router();
  5. router.get('/restaurants', Food.searchResaturant);
  6. export default router