human/main.py
2024-12-05 00:47:17 +08:00

19 lines
456 B
Python

#encoding = utf8
import logging
import os
from ui import IpcRender
from utils import config_logging
logger = logging.getLogger(__name__)
current_file_path = os.path.dirname(os.path.abspath(__file__))
if __name__ == '__main__':
config_logging('./logs/info.log', logging.INFO, logging.INFO)
logger.info('------------start------------')
render = IpcRender()
render.run()
render.stop()
logger.info('------------finish------------')