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