This commit is contained in:
Tommy Parnell
2022-03-11 01:34:56 -05:00
parent 6fc2a57b0d
commit bb34fe4f60
15 changed files with 735 additions and 2839 deletions

20
HttpTrigger/function.json Normal file
View File

@@ -0,0 +1,20 @@
{
"bindings": [
{
"authLevel": "function",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
],
"scriptFile": "../dist/HttpTrigger/index.js"
}