package cc.mrbird.febs.gateway.common.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import reactor.core.publisher.Mono; /** * @author MrBird */ @RestController public class IndexController { @RequestMapping("/") public Mono index() { return Mono.just("febs cloud gateway"); } }