jmarchel fb02c5b703 Init repo from the component-template
Change-Id: Ic96afc7e75322b3d3e1d357972b6d29a4dbec3f4
2024-01-31 14:26:08 +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;
}
}