Skip to content

Commit

Permalink
fix: json_dtos 로 바꾸고 나서 import 쪽에 수정안된 부분 픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
heumsi committed Feb 27, 2021
1 parent 65098cd commit 7d8de4e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/auth/external_interface/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from auth.application.dtos import GetTokenInputDto
from auth.external_interface.json_dto import GetTokenJsonRequest, GetTokenJsonResponse
from container import Container
from shared_kernel.external_interface.json_dto import FailedJsonResponse
from shared_kernel.external_interface.json_dtos import FailedJsonResponse

router = APIRouter(
prefix="/auth",
Expand Down
4 changes: 2 additions & 2 deletions app/drinks/external_interface/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
from drinks.application.dtos import CreateDrinkInputDto, FindDrinksInputDto
from drinks.application.service import DrinkApplicationService
from drinks.domain.repository import QueryParam
from drinks.external_interface.json_dto import (
from drinks.external_interface.json_dtos import (
CreateDrinkJsonRequest,
GetDrinkJsonResponse,
)
from shared_kernel.external_interface.json_dto import FailedJsonResponse
from shared_kernel.external_interface.json_dtos import FailedJsonResponse

router = APIRouter(
prefix="/drinks",
Expand Down
2 changes: 1 addition & 1 deletion app/reviews/external_interface/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
UpdateReviewJsonRequest,
GetReviewsJsonResponse,
)
from shared_kernel.external_interface.json_dto import FailedJsonResponse
from shared_kernel.external_interface.json_dtos import FailedJsonResponse

router = APIRouter(
prefix="/reviews",
Expand Down
4 changes: 2 additions & 2 deletions app/users/external_interface/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
from auth.application.dtos import GetTokenDataInputDto
from auth.application.service import AuthApplicationService
from container import Container
from shared_kernel.external_interface.json_dto import FailedJsonResponse
from shared_kernel.external_interface.json_dtos import FailedJsonResponse
from users.application.dtos import CreateUserInputDto, DeleteUserInputDto, FindUserInputDto, UpdateUserInputDto
from users.application.service import UserApplicationService
from users.external_interface.json_dto import (
from users.external_interface.json_dtos import (
CreateUserJsonRequest,
CreateUserJsonResponse,
GetUserJsonResponse,
Expand Down
2 changes: 1 addition & 1 deletion app/wishes/external_interface/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from auth.application.service import AuthApplicationService
from container import Container
from drinks.application.service import DrinkApplicationService
from shared_kernel.external_interface.json_dto import FailedJsonResponse
from shared_kernel.external_interface.json_dtos import FailedJsonResponse
from wishes.application.dto import CreateWishInputDto, DeleteWishInputDto, FindWishesInputDto
from wishes.application.service import WishApplicationService
from wishes.domain.repository import QueryParam
Expand Down

0 comments on commit 7d8de4e

Please sign in to comment.