UNPKG

@wmfs/tymly

Version:

A framework for building and sharing workflows in Node.js

10 lines (8 loc) 240 B
'use strict' module.exports = class Saluting { run (event, context) { console.log('SALUTING!!!!', context.executionName) event.petDiary.push(`It looks like ${event.petName} is saluting!`) context.sendTaskSuccess(event) } }