import { http } from "@/utils/http";
type Result = {
success: boolean;
data: Array<any>;
};
export const getResultList = () => {
return http.request<Result>("get", "/getList");