mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
15 lines
333 B
Python
15 lines
333 B
Python
"""Definition of the Swagger UI Blueprint."""
|
|
|
|
from flask_swagger_ui import get_swaggerui_blueprint
|
|
|
|
SWAGGER_URL = '/docs'
|
|
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."
|
|
}
|
|
)
|