import proxy from "../proxy"; import { Dispatch } from "redux"; const userProduct = { addVOD: (data = {}) => async (dispatch : Dispatch) => await proxy.post("userProduct/addVOD", data, { dispatch }), }; export default userProduct;