Cloud Endpoints with Multiple Services Classes
问题 I am starting to use Google Cloud Endpoints and I am running in a problem when specifying multiple services classes. Any idea how to get this working? ApiConfigurationError: Attempting to implement service myservice, version v1, with multiple classes that aren't compatible. See docstring for api() for examples how to implement a multi-class API. This is how I am creating my endpoint server. AVAILABLE_SERVICES = [ FirstService, SecondService ] app = endpoints.api_server(AVAILABLE_SERVICES) and