routes.ts 198 B

12345678910
  1. import { http } from "@/utils/http";
  2. type Result = {
  3. success: boolean;
  4. data: Array<any>;
  5. };
  6. export const getAsyncRoutes = () => {
  7. return http.request<Result>("get", "/get-async-routes");
  8. };