mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-05 04:38:37 +08:00
9 lines
200 B
Python
9 lines
200 B
Python
from core.hosting_configuration import HostingConfiguration
|
|
from flask import Flask
|
|
|
|
hosting_configuration = HostingConfiguration()
|
|
|
|
|
|
def init_app(app: Flask):
|
|
hosting_configuration.init_app(app)
|