Skip to content

Commit

Permalink
Merge pull request #42 from PlanIt-Project/BE_feature_36
Browse files Browse the repository at this point in the history
test: test3
  • Loading branch information
moonjin-kim authored Mar 13, 2024
2 parents 2b31e6f + 700bfe3 commit deb142a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: '3'
services:
app:
build: .
image: kimm
ports:
- "8080:8080"
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ public class ProgramController {

private final ProgramService programService;

@GetMapping("/test")
public ApiResponse<String> test() {
return ApiResponse.ok("ok");
}

@PostMapping("/registration")
public ApiResponse<?> registration(@RequestBody ProgramRegistraion.programRegistrationrequest programRegistrationrequest){
try {
Expand Down

0 comments on commit deb142a

Please sign in to comment.