fix: 将app设为包

This commit is contained in:
DLmaster361
2025-08-07 14:32:39 +08:00
parent 8cbd542a75
commit 7941f5cafd
14 changed files with 57 additions and 26 deletions

View File

@@ -30,8 +30,6 @@ __author__ = "DLmaster361 <DLmaster_361@163.com>"
__license__ = "GPL-3.0 license"
from .notification import Notify
from ..utils.security import Crypto
from .system import System
from ..task.skland import skland_sign_in
__all__ = ["Notify", "Crypto", "System", "skland_sign_in"]
__all__ = ["Notify", "System"]

View File

@@ -30,8 +30,8 @@ from pathlib import Path
from plyer import notification
from core import Config
from utils import get_logger, ImageUtils
from app.core import Config
from app.utils import get_logger, ImageUtils
logger = get_logger("通知服务")

View File

@@ -30,8 +30,8 @@ import getpass
from datetime import datetime
from pathlib import Path
from core import Config
from utils.logger import get_logger
from app.core import Config
from app.utils.logger import get_logger
logger = get_logger("系统服务")