16 lines
438 B
JavaScript
16 lines
438 B
JavaScript
const asyncWrapper = require('../../middleware/asyncWrapper');
|
|
const getExternalWeather = require('../../utils/getExternalWeather');
|
|
|
|
// @desc Update weather
|
|
// @route GET /api/weather/update
|
|
// @access Public
|
|
const updateWeather = asyncWrapper(async (req, res, next) => {
|
|
const weather = await getExternalWeather();
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
data: weather,
|
|
});
|
|
});
|
|
|
|
module.exports = updateWeather;
|