*) I want to split the code to handle the various pieces into individual functions
but don’t want to register them on different paths. This seems like 101 but my googling hasn’t helped me find
a way to register them to same path and then handle sub paths and route based on the sub path. This is easily
done via express in non-serverless world. There are some libraries which allow me to do this
https://github.com/modofunjs/modofun but it’s all too primitive for real world use cases (I can provide details).
What is the recommended best practice from Google serverless team?
*) I don’t want to be defining these URLs manually. I would like to write openAPI spec for my APIs and realize
them in cloud endpoints and then use google cloud functions to just handle the HTTP calls. It doesn’t seem like