routesV2.get('/', async (_req, res) => {
  const today = formatDate(new Date())
  const data = await getMappedDataByDate(today);

  res.json(data);