mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-04-06 00:07:34 +00:00
29 lines
536 B
Java
29 lines
536 B
Java
package org.ruoyi.controller;
|
||
|
||
import cn.dev33.satoken.annotation.SaIgnore;
|
||
import lombok.RequiredArgsConstructor;
|
||
import org.springframework.stereotype.Controller;
|
||
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启动成功!";
|
||
}
|
||
|
||
|
||
|
||
}
|