mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 13:49:45 +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)
|