jmarchel ffa43a0b15 Init repo from the component-template
Change-Id: Id68bb6a0306fbbe9a4943cd7d3d433a34fd8565f
2024-01-08 14:46:59 +01: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;
}
}