Refactor: Improve code organization

Refactor signInUtils.ts and networkUtils.ts into smaller, more manageable files.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-18 06:18:00 +00:00
parent 609c6703cc
commit 6861f4d88b
10 changed files with 245 additions and 214 deletions

View File

@@ -1,9 +1,14 @@
// 네트워크 유틸리티 모듈
// 모든 네트워크 유틸리티 모듈 내보내기
export {
verifyServerConnection,
verifySupabaseConnection,
hasCorsIssue,
handleHttpUrlWithoutProxy,
logProxyInfo,
verifyServerConnection,
verifySupabaseConnection
logProxyInfo
} from './networkUtils';
// 직접 접근을 위한 개별 모듈도 내보내기
export * from './connectionVerifier';
export * from './enhancedVerifier';
export * from './compatUtils';