Files
SOP/sop-admin/sop-admin-frontend/src/api/routes.ts
六如 e23911b075 5.0
2024-10-10 11:35:34 +08:00

11 lines
198 B
TypeScript

import { http } from "@/utils/http";
type Result = {
success: boolean;
data: Array<any>;
};
export const getAsyncRoutes = () => {
return http.request<Result>("get", "/get-async-routes");
};