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

2 statements  

« prev     ^ index     » next       coverage.py v7.2.2, created at 2023-03-26 06:12 +0000

1""" 

2This module contains definitions of the HTTP protocol. 

3""" 

4 

5FORM_CONTENT_TYPES = ["application/x-www-form-urlencoded", "multipart/form-data"] 

6 

7METHODS = {"get", "put", "post", "delete", "options", "head", "patch", "trace"}