1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/swagger.py
Stefano Pigozzi 9d644605d5
🧹 Reformat code
2021-05-06 03:02:13 +02:00

16 lines
411 B
Python

"""Definition of the Swagger UI Blueprint."""
from flask_swagger_ui import get_swaggerui_blueprint
SWAGGER_URL = '/docs/'
# FIXME: this will break if the website root isn't /, use url_for() instead!
API_URL = "/docs/swagger.json"
# Call factory function to create our blueprint
swagger_ui_blueprint = get_swaggerui_blueprint(
SWAGGER_URL,
API_URL,
config={
'app_name': "N.E.S.T."
}
)