mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-03-14 05:03:43 +08:00
27 lines
447 B
Java
27 lines
447 B
Java
package org.ruoyi.controller;
|
||
|
||
import cn.dev33.satoken.annotation.SaIgnore;
|
||
import org.springframework.web.bind.annotation.GetMapping;
|
||
import org.springframework.web.bind.annotation.RestController;
|
||
|
||
/**
|
||
* 首页
|
||
*
|
||
* @author Lion Li
|
||
*/
|
||
@SaIgnore
|
||
@RestController
|
||
public class IndexController {
|
||
|
||
/**
|
||
* 访问首页,提示语
|
||
*/
|
||
@GetMapping("/")
|
||
public String index() {
|
||
return "RuoYi AI启动成功!";
|
||
}
|
||
|
||
|
||
|
||
}
|