File size: 371 Bytes
5769f09
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import extractNextEpisodeSchedule from "../extractors/getNextEpisodeSchedule.extractor.js";

export const getNextEpisodeSchedule = async (req) => {
  const { id } = req.params;
  try {
    const nextEpisodeSchedule = await extractNextEpisodeSchedule(id);
    return { nextEpisodeSchedule: nextEpisodeSchedule };
  } catch (e) {
    console.error(e);
    return e;
  }
};