Initial commit

This commit is contained in:
CNlaojing
2025-03-19 13:02:51 +08:00
commit 6752a5cd9f
41 changed files with 7792 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# ui/helpers.py
# -*- coding: utf-8 -*-
import logging
import traceback
def log_error(message: str):
logging.error(f"{message}\n{traceback.format_exc()}")