启动成功

This commit is contained in:
2026-01-18 19:32:32 +08:00
parent 7d3915aae2
commit 485307e7de
203 changed files with 2426 additions and 122 deletions

View File

@@ -0,0 +1,11 @@
import request from "./src/api/http.js";
import { type TrangleAgentApiForumV1ForumCommentsCreateRes, type DeepRequired, type TrangleAgentApiForumV1ForumCommentsCreateReq } from "../../interface";
import { type AxiosRequestConfig } from "axios";
/**
* 创建评论
* /api/forum/comments/create
*/
export function postApiForumCommentsCreate(input?: TrangleAgentApiForumV1ForumCommentsCreateReq, config?: AxiosRequestConfig) {
return request.post<DeepRequired<TrangleAgentApiForumV1ForumCommentsCreateRes>>(`/api/forum/comments/create`, input, config);
}