Skip to content

Commit

Permalink
remove unnecessary interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan-Y-Ko committed Oct 1, 2024
1 parent 8aa077f commit 23f220a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.

This file was deleted.

6 changes: 0 additions & 6 deletions src/modules/ideation/ports/primary/addIdeationPort.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/modules/ideation/ports/primary/ideationClientPort.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { type AddIdeationUsecaseDto } from "@/modules/ideation/application/dtos/addIdeationUsecaseDto";
import { type AddIdeationResponseDto } from "@/modules/ideation/application/dtos/response.dto";
import { type AddIdeationRequestDto } from "@/modules/ideation/application/dtos/request.dto";

export interface IdeationClientPort {
addIdeation({
teamId,
title,
description,
vision,
}: AddIdeationUsecaseDto): Promise<AddIdeationResponseDto>;
}: AddIdeationRequestDto): Promise<AddIdeationResponseDto>;
}

0 comments on commit 23f220a

Please sign in to comment.