6 lines
148 B
TypeScript
Raw Normal View History

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