Skip to content

Commit

Permalink
commit half way done reply use case
Browse files Browse the repository at this point in the history
  • Loading branch information
josephpcsywm committed Jul 20, 2023
1 parent bb9fdcb commit 1cf1846
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/replytoquestion/PostControl.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package replytoquestion;

public class PostControl {
final PostInputBoundary postInput;

public PostControl(PostInputBoundary postInput){
this.postInput = postInput;
}
}
4 changes: 4 additions & 0 deletions src/main/java/replytoquestion/PostFactory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package replytoquestion;

public class PostFactory {
}
7 changes: 7 additions & 0 deletions src/main/java/replytoquestion/PostInputBoundary.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package replytoquestion;

import presenter.MessageResponseModel;

public interface PostInputBoundary {
MessageResponseModel createPost(PostRequestModel postRequestModel);
}
4 changes: 4 additions & 0 deletions src/main/java/replytoquestion/PostRequestModel.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package replytoquestion;

public class PostRequestModel {
}
1 change: 1 addition & 0 deletions src/main/java/replytoquestion/ReplyInteractor.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package replytoquestion;

public class ReplyInteractor {
M
}

0 comments on commit 1cf1846

Please sign in to comment.