Files
2026-07-13 12:58:18 +08:00

15 lines
269 B
TypeScript

import { client } from "../Client/client";
export async function getPRDataService() {
try {
let config = {
method: "POST",
url: "/api/getPRdata",
};
const res = await client(config);
return res;
} catch (error) {
throw error;
}
}