supercommit
This commit is contained in:
13
src/main/java/com/example/demo/DemoRestController.java
Normal file
13
src/main/java/com/example/demo/DemoRestController.java
Normal file
@ -0,0 +1,13 @@
|
||||
package com.example.demo;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class DemoRestController {
|
||||
|
||||
@GetMapping("/")
|
||||
public String get() {
|
||||
return "Hallo";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user