6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
import { http } from "../utils/http";
|
|
|
|
export const getAsyncRoutes = (params?: object) => {
|
|
return http.request("get", "/getAsyncRoutes", { params });
|
|
};
|