first commit #7

Closed
yurchik-k0028 wants to merge 3 commits from (deleted):main into main
Showing only changes of commit 776400306f - Show all commits

View File

@@ -0,0 +1,14 @@
package com.example.nto.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class RootController {
@GetMapping("/")
public String home() {
return "Application is running";
}
}