Radosław Piliszek eb41156ed2 Add component template elements
Change-Id: Ib7ffd094f7030620eabb569d2578ce7c29b49940
2023-10-13 13:30:10 +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;
}
}