UNPKG

@wmfs/statebox

Version:

Orchestrate Node functions using Amazon States Language

9 lines (7 loc) 217 B
const axios = require('axios') module.exports = class HttpCantConnect { run (event, context) { axios.get('http://localhost:9999/please-just-fail') .catch(err => context.sendTaskFailure(err)) } // run }