Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Created August 2, 2017 21:31
Show Gist options
  • Select an option

  • Save Jahans3/3a70f5dc5b8d5b49eb9665d47f52c99e to your computer and use it in GitHub Desktop.

Select an option

Save Jahans3/3a70f5dc5b8d5b49eb9665d47f52c99e to your computer and use it in GitHub Desktop.
const frontPage = async (req, res) => {
try {
const feed = await fetchFeed({ sources })
const response = await sortFeed({ feed })
res(response)
} catch (err) {
console.log(`Error: controllers.feed: ${err}`)
res(Boom.internal(err))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment