Update main.py

This commit is contained in:
Koutakui 2023-12-21 15:20:39 +08:00
parent 5abd0723f8
commit accf227701
1 changed files with 6 additions and 6 deletions

12
main.py
View File

@ -1,11 +1,11 @@
#!/usr/bin/python
# 项目主函数入口
import datetime
import time
from commons.logUtil import logger
from controllers.prController import app
import datetime # datatime对time模块进行了更高级的封装提供了更高级的接口。
import time #time模块操作简单速度快适用于处理简单的时间计算和格式化
from commons.logUtil import logger #日志类工具
from controllers.prController import app #app是flask模块的实例用于接收web服务器的请求
from services.pullService import check_and_update_pull
from threading import Thread
from threading import Thread #threading是python中专门提供用来做多线程的模块Thread是主要的线程类
import config.baseConfig as baseConfig
@ -28,7 +28,7 @@ def run():
monitoring_thread.start()
# 运行应用程序
app.run(host=baseConfig.host, port=baseConfig.port)
app.run(host=baseConfig.host, port=baseConfig.port) #host主机名port端口号
# 主程序入口