| 
                        123456789101112131415 | 
                        - from controllers.service_api import api
 - from flask import current_app
 - from flask_restful import Resource
 - 
 - 
 - class IndexApi(Resource):
 -     def get(self):
 -         return {
 -             "welcome": "Dify OpenAPI",
 -             "api_version": "v1",
 -             "server_version": current_app.config['CURRENT_VERSION']
 -         }
 - 
 - 
 - api.add_resource(IndexApi, '/')
 
 
  |