This commit is contained in:
2021-08-19 16:39:29 +02:00
commit 690f0f3cf5
8 changed files with 288 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('modbusservice')
app.add_api('./openapi.yaml')
app.run(port=8080)