const headers = { 'Content-Type': 'text/html' }
const template = require('./repo-hunt-templates-post')
const handler = request => {
try {
return new Response(template(), { headers })
} catch (err) {
return new Response(err.toString())
}
}
export default handler