From 825de25966c32155e0238dc9f3eaeb19d7a87658 Mon Sep 17 00:00:00 2001 From: xuqm Date: Fri, 18 Jul 2025 11:25:54 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=9C=A8=20common.ts=20=E4=B8=AD?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20app.ts=20=E7=9A=84=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 common.ts 文件中添加了 app.ts 的导入,这可能有助于模块间的连接和初始化。确保遵循模块化设计原则,合理组织代码结构。 --- src/common/common.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/common.ts b/src/common/common.ts index d73044b..aeaf72d 100644 --- a/src/common/common.ts +++ b/src/common/common.ts @@ -2,3 +2,4 @@ import 'react'; import 'react-native'; import '@common/NavigationHelper'; import '@common/ToastHelper.ts'; +import '@app/app.ts';