6 lines
156 B
TypeScript
Raw Normal View History

import { http } from "../utils/http";
2021-10-16 16:16:58 +08:00
2021-12-06 17:11:15 +08:00
export const getAsyncRoutes = (params?: object) => {
return http.request("get", "/getAsyncRoutes", { params });
2021-10-16 16:16:58 +08:00
};