Are Cloud Endpoints with Go Google App Engine Standard possible?
问题 I have implemented a simple API in Go on Google App Engine Standard using just: func init() { http.HandleFunc("/api/v1/resource",submitResource) } Nothing special. However I want to port this code to using Cloud Endpoints instead in order to get the better monitoring and diagnostics. Is it even possible with STANDARD instances or must I move to FLEXIBLE? I can't find any documentation on this. Nor answers to this seemingly simple question. At the moment I half wish I had chosen Python because