Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/connexion/operations/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1""" 

2This module defines Connexion Operation classes. A Connexion Operation implements an OpenAPI 

3operation, which describes a single API operation on a path. It wraps the view function linked to 

4the operation with decorators to handle security, validation, serialization etc. based on the 

5OpenAPI specification, and exposes the result to be registered as a route on the application. 

6 

7""" 

8 

9from .abstract import AbstractOperation # noqa 

10from .openapi import OpenAPIOperation # noqa 

11from .swagger2 import Swagger2Operation # noqa