authservice/test.py

9 lines
159 B
Python
Raw Permalink Normal View History

2021-05-11 16:48:02 +02:00
import connexion
import logging
2021-01-26 13:43:09 +01:00
logging.basicConfig(level=logging.DEBUG)
2021-01-26 13:43:09 +01:00
2021-05-11 16:48:02 +02:00
app = connexion.App('authservice')
app.add_api('./openapi.yaml')
app.run(port=8080)