Refactor auth.utils.ts

Refactor auth.utils.ts into smaller modules for better organization and maintainability. Split functions into networkUtils.ts, responseUtils.ts, and toastUtils.ts based on their purpose.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 13:48:29 +00:00
parent 76f9b3b4df
commit 5b73eddd4f
9 changed files with 143 additions and 113 deletions

6
src/utils/auth/index.ts Normal file
View File

@@ -0,0 +1,6 @@
// 모든 인증 관련 유틸리티 함수들을 내보냅니다
export * from './toastUtils';
export * from './networkUtils';
export * from './responseUtils';
export * from './validationUtils';