Files
PrismAsAService/HttpTrigger/function.json
Tommy Parnell bb34fe4f60 function
2022-03-11 01:34:56 -05:00

20 lines
327 B
JSON

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