const express = require('express'); const superagent = require('superagent');
const app = express(); const PORT = 3000;
app.get('/', greeting); app.get('/team', getTeam); app.get('/recipes', searchRecipe)
const express = require('express'); const superagent = require('superagent');
const app = express(); const PORT = 3000;
app.get('/', greeting); app.get('/team', getTeam); app.get('/recipes', searchRecipe)