import {AxiosResponse} from "axios"; import {ResponseVO} from "@/lib/definitions"; import {httpReq} from "@/utils/axiosReq"; import {ShareVO} from "@/components/type/Share.d"; export const addTaskPassAPI= (data:ShareVO):Promise>> =>{ return httpReq.post(process.env.NEXT_PUBLIC_TODO_REQUEST_URL + "/task/pass", data) }