You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
461 B
Python

def init_services(app) -> None:
"""初始化Services"""
# 初始化文件系统配置
from iti.applications.service.sys.sys_file_config import init_app as init_file_config
init_file_config(app)
# 初始化文件目录
from iti.applications.service.sys.sys_file_directory import init_app as init_file_directory
init_file_directory(app)
from iti.applications.service.iot import init_iot as init_iot_app
init_iot_app(app)