| 12345678910111213141516 | """This module defines Connexion APIs. A connexion API takes in an OpenAPI specification andtranslates the operations defined in it to a set of Connexion Operations. This set of operationsis implemented as a framework blueprint (A Flask blueprint or framework-specific equivalent),which can be registered on the framework application.For each operation, the API resolves the user view function to link to the operation, wraps itwith a Connexion Operation which it configures based on the OpenAPI spec, and finally adds it asa route on the framework blueprint.When the API is registered on the Connexion APP, the underlying framework blueprint is registeredon the framework app."""from .abstract import AbstractAPI  # NOQA
 |