Skip to content

Commit

Permalink
revert unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed Nov 21, 2023
1 parent b3b1c68 commit 8cada26
Show file tree
Hide file tree
Showing 3 changed files with 21,371 additions and 83 deletions.
45 changes: 23 additions & 22 deletions examples/http-test/functions/receiveTrigger.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
export default async function (event) {

Check warning on line 1 in examples/http-test/functions/receiveTrigger.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

'event' is defined but never used
const server = 'httpbin.org'
return {
reply: [{
payload: "You have successfully triggered the test server..."
}],
// send: [
// {
// server,
// channel: "DELETE"
// },
// {
// server,
// channel: "GET"
// },
// {
// server,
// channel: "POST"
// },
// {
// server,
// channel: "PATCH"
// },
// {
// server,
// channel: "PUT"
// }
// ],
send: [
{
server,
channel: "DELETE"
},
{
server,
channel: "GET"
},
{
server,
channel: "POST"
},
{
server,
channel: "PATCH"
},
{
server,
channel: "PUT"
}
],
}
}
Loading

0 comments on commit 8cada26

Please sign in to comment.