This commit is contained in:
2021-06-17 11:52:13 +02:00
commit 215eb69395
11 changed files with 214 additions and 0 deletions

8
test.py Normal file
View File

@ -0,0 +1,8 @@
import connexion
import logging
logging.basicConfig(level=logging.DEBUG)
app = connexion.App('hv2-api')
app.add_api('./openapi.yaml')
app.run(port=8080)