Files
TrangleAgent/Frontend/src/api/controller/LunTanPingLun/postApiForumCommentsCreate.ts

12 lines
560 B
TypeScript
Raw Normal View History

2026-01-18 19:32:32 +08:00
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);
}