We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f52d572 commit 90705a8Copy full SHA for 90705a8
2 files changed
src/apis/auth/dto.ts
@@ -1,4 +1,4 @@
1
-import { BaseSuccessResponse } from '../core/dto';
+import { BaseSuccessResponse } from '@apis/core/dto';
2
3
// jwt를 이용한 사용자 정보 조회 응답
4
export type getUserInfoByJwtResponse = BaseSuccessResponse<getUserInfoByJwtData>;
src/apis/auth/index.ts
@@ -1,5 +1,5 @@
-import { getUserInfoByJwtResponse } from './dto';
-import { newRequest } from '../core';
+import { newRequest } from '@apis/core';
+import type { getUserInfoByJwtResponse } from './dto';
// jwt로 사용자 정보 조회 api /auth/me
5
export const getUserInfoByJwtApi = () => newRequest.get<getUserInfoByJwtResponse>('/auth/me');
0 commit comments