diff --git a/server/src/chefie.ts b/server/src/chefie.ts index 8001c0b..059976e 100644 --- a/server/src/chefie.ts +++ b/server/src/chefie.ts @@ -22,9 +22,6 @@ type Pizza = { const baseUrl = 'https://www.pizzachefie.cz'; const pizzyUrl = `${baseUrl}/pizzy.html?pobocka=plzen`; -// URL na Food API - získání jídelních lístků restaurací -const foodUrl = process.env.FOOD_API_URL || 'http://localhost:3002'; - const buildPizzaUrl = (pizzaUrl: string) => { return `${baseUrl}/${pizzaUrl}`; }