Skip to content

Commit

Permalink
happy linter, happy life
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Edwards committed Jul 15, 2021
1 parent 3ceec24 commit 4526389
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions aws-ts-stepfunctions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,16 @@ const helloFunction = new aws.lambda.CallbackFunction(
role: lambdaRole,
callback: (event, context, callback) => {
callback(null, "Hello");
}
},
});

const worldFunction = new aws.lambda.CallbackFunction(
"worldFunction", {
role: lambdaRole,
callback: (event, context, callback) => {
callback(null, `${event} World!`)
}
}
);
role: lambdaRole,
callback: (event, context, callback) => {
callback(null, `${event} World!`);
},
});

const stateMachine = new aws.sfn.StateMachine("stateMachine", {
roleArn: sfnRole.arn,
Expand Down

0 comments on commit 4526389

Please sign in to comment.