6 lines
237 B
JavaScript
6 lines
237 B
JavaScript
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())));
|