14 lines
305 B
Java
14 lines
305 B
Java
package com.mini.capi.sys.controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@Controller
|
|
public class RootController {
|
|
|
|
@GetMapping("/")
|
|
public String redirectToSwagger() {
|
|
return "redirect:/swagger-ui.html";
|
|
}
|
|
}
|