Files
PrismAsAService/HttpTrigger/function.json
Tommy Parnell cae01a2449 node 16
2022-03-11 01:41:49 -05:00

20 lines
328 B
JSON

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