From 54f26cb72c23c5511fa1d4a3cc975cc7ade428cd Mon Sep 17 00:00:00 2001 From: Leon Xu Date: Mon, 2 May 2022 12:30:09 -0700 Subject: [PATCH] fix: remove fetchIndividualData route --- routes/ncov.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/routes/ncov.js b/routes/ncov.js index 8a3719b..4438f5a 100644 --- a/routes/ncov.js +++ b/routes/ncov.js @@ -15,7 +15,6 @@ import { fetchAllChinaData, fetchChinaData, fetchImageData, - fetchIndividualChinaData, fetchWorldData } from '../controller/ncovFetchData.js' @@ -30,7 +29,6 @@ router.get("/travel", TravelDataCity); router.get('/travelprevention', TravelPolicy) router.get('/fetch', fetchAllChinaData); -router.get('/fetch/one', fetchIndividualChinaData) router.get('/fetch/chart', fetchImageData); router.get('/fetch/china', fetchChinaData); router.get('/fetch/world', fetchWorldData);