Skip to content

Commit 0e97ba4

Browse files
authored
Merge pull request #31 from wafflestudio/24-feature-msw_update
2 parents 0cae5df + 2b04ddc commit 0e97ba4

File tree

12 files changed

+42
-0
lines changed

12 files changed

+42
-0
lines changed

src/mocks/db/album.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/db/comment.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/db/follow.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/db/post.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/db/story.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/db/user.db.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const mockPosts = []

src/mocks/handlers/album.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// 해당 엔티티에 필요한 데이터를 나중에 여기서 가져옴
2+
// import { mockData } from '../db/entity.db';
3+
4+
export const albumHandlers = [
5+
// 여기에 http.get, http.post 등을 추가
6+
]

src/mocks/handlers/auth.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// 해당 엔티티에 필요한 데이터를 나중에 여기서 가져옴
2+
// import { mockData } from '../db/entity.db';
3+
4+
export const authHandlers = [
5+
// 여기에 http.get, http.post 등을 추가
6+
]

src/mocks/handlers/comment.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// 해당 엔티티에 필요한 데이터를 나중에 여기서 가져옴
2+
// import { mockData } from '../db/entity.db';
3+
4+
export const commentHandlers = [
5+
// 여기에 http.get, http.post 등을 추가
6+
]

src/mocks/handlers/follow.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// 해당 엔티티에 필요한 데이터를 나중에 여기서 가져옴
2+
// import { mockData } from '../db/entity.db';
3+
4+
export const followHandlers = [
5+
// 여기에 http.get, http.post 등을 추가
6+
]

0 commit comments

Comments
 (0)