package com.hx.other.service.controller;
|
|
import com.hx.resultTool.Result;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @Author: cmg
|
* @Date: 2023/5/5 11:43
|
*/
|
@RestController
|
@RequestMapping("/ai/test")
|
public class TestController {
|
|
@RequestMapping("test")
|
public Result test()
|
{
|
return Result.success("test");
|
}
|
|
}
|