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:
6
src/utils/auth/index.ts
Normal file
6
src/utils/auth/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
// 모든 인증 관련 유틸리티 함수들을 내보냅니다
|
||||
export * from './toastUtils';
|
||||
export * from './networkUtils';
|
||||
export * from './responseUtils';
|
||||
export * from './validationUtils';
|
||||
Reference in New Issue
Block a user