import { request } from "@/utils/request.js"; export const releaseTopic = async (data) => { return request({ url: "/api/rating/topic/release", method: "POST", data, }); }; export const fetchTopicCategories = async (data) => { return request({ url: "/api/rating/topic/category/list", method: "GET", }); }; export const fetchTopicList = async (categoryId, page = 1) => { return request({ url: `/api/rating/topic/list/${categoryId}?page=${page}`, method: "GET", }); };