Skip to content

Commit

Permalink
Update TestController: Github Action test
Browse files Browse the repository at this point in the history
  • Loading branch information
LUCETE012 committed Oct 4, 2024
1 parent 9491b22 commit 1531ce1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/com/example/aneukbeserver/TestController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.example.aneukbeserver;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RequestMapping("/")
@RestController
public class TestController {
@GetMapping
public String test() {
return "Hello world";
}
}

0 comments on commit 1531ce1

Please sign in to comment.