Radosław Piliszek 5cc0595207 Init repo from the component-template
Change-Id: Id4ce6f74b8df0c20d17d5a1b43afd68fbc17a87c
2023-09-19 20:11:30 +02:00

15 lines
283 B
Java

package com.example.demo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DemoController {
@RequestMapping("/")
public Object root() {
return null;
}
}