You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
664 B
24 lines
664 B
package com.ruoyi.web.controller.tool; |
|
|
|
import org.springframework.security.access.prepost.PreAuthorize; |
|
import org.springframework.stereotype.Controller; |
|
import org.springframework.web.bind.annotation.GetMapping; |
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
import com.ruoyi.common.core.controller.BaseController; |
|
|
|
/** |
|
* swagger 接口 |
|
* |
|
* @author ruoyi |
|
*/ |
|
@Controller |
|
@RequestMapping("/tool/swagger") |
|
public class SwaggerController extends BaseController |
|
{ |
|
@PreAuthorize("@ss.hasPermi('tool:swagger:view')") |
|
@GetMapping() |
|
public String index() |
|
{ |
|
return redirect("/swagger-ui.html"); |
|
} |
|
}
|
|
|