mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-18 19:06:26 +00:00
9 lines
163 B
Python
9 lines
163 B
Python
import logging
|
|
import connexion
|
|
from app.api import workflows
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
app = connexion.FlaskApp(__name__)
|
|
app.add_api('api.yml')
|
|
|