UNPKG

@wmfs/statebox

Version:

Orchestrate Node functions using Amazon States Language

9 lines (7 loc) 207 B
const axios = require('axios') module.exports = class HttpNotFound { run (event, context) { axios.get('http://localhost:3003/not-found') .catch(err => context.sendTaskFailure(err)) } // run }