added: api文档

This commit is contained in:
none
2023-03-24 17:44:22 +08:00
parent 7b3d321391
commit 7702d92dc8
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package xyz.playedu.api.controller.frontend;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import xyz.playedu.api.types.JsonResponse;
/**
* @Author 杭州白书科技有限公司
* @create 2023/3/24 17:42
*/
@RestController
public class IndexController {
@GetMapping("/")
public JsonResponse index() {
return JsonResponse.success();
}
}