From 4dc68d6661d6769887835ae948157648ddb6dd8e Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Sat, 28 May 2022 18:18:37 +0200 Subject: [PATCH] feat(route-count): remove unused file --- agency-route-count/agency-route-count.js | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 agency-route-count/agency-route-count.js diff --git a/agency-route-count/agency-route-count.js b/agency-route-count/agency-route-count.js deleted file mode 100644 index bbd9ec2..0000000 --- a/agency-route-count/agency-route-count.js +++ /dev/null @@ -1,17 +0,0 @@ -require('dotenv').config(); -const axios=require('axios'); -const debug=require('debug')('agency-route-count'); - -/*check if http get service day response includes data*/ -function hasData(res){ - if('data' in res){ - debug('data in response available'); - return true; - }else{ - debug('data in response NOT available'); - return false; - } -} - -module.exports={ -};