add international forecast support with Open-Meteo

This commit is contained in:
mrkmntal 2026-04-07 14:57:23 -04:00
commit 7098414f67
19 changed files with 566 additions and 899 deletions

View file

@ -50,3 +50,10 @@ export const forecastProxy = async (req, res) => {
skipParams: ['u'],
});
};
export const openMeteoProxy = async (req, res) => {
await cache.handleRequest(req, res, 'https://api.open-meteo.com', {
serviceName: 'Open-Meteo',
skipParams: ['u'],
});
};