mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 02:46:52 +08:00
10 lines
201 B
Python
10 lines
201 B
Python
from flask import Flask
|
|
|
|
from core.hosting_configuration import HostingConfiguration
|
|
|
|
hosting_configuration = HostingConfiguration()
|
|
|
|
|
|
def init_app(app: Flask):
|
|
hosting_configuration.init_app(app)
|