Main repo for the orchestrator, responsible for getting function requests from OpenFaaS and returning function output back to OpenFaaS.
go build main.go
POST localhost:8080/run
{
"fid": "hello",
"src": "def handler(x):\n\tprint(x)",
"params": "ldodafl",
"lang": "python"
}
Response
{
"fid":"hello",
"result":"ldodafl\n"
}