初步增加 gui

This commit is contained in:
yml2213
2026-06-21 23:25:08 +08:00
parent ea8a56ca66
commit af3951ec6f
6 changed files with 938 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"""GUI模块"""
from .app import DouyuLoginApp
from .login_worker import parse_accounts_text, get_imap_server
from .widgets import AccountTable, LogPanel
__all__ = [
'DouyuLoginApp',
'parse_accounts_text',
'get_imap_server',
'AccountTable',
'LogPanel',
]