package com.water.bi.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/api/bi") public class BIRestController { @GetMapping("/health") public String health() { return "BI Service is running"; } }