yz_08
2021-05-10 a0a84b9ecbedfa2a04060171cf25e5a0215a5e73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<String> index() {
        return Mono.just("febs cloud gateway");
    }
}