import { Router } from 'express'; import { asyncWrap } from '../errors.js'; import * as weather from '../../weather.js'; export const router = Router(); router.get('/', asyncWrap(async (_req, res) => res.json(await weather.current())));