import { apiService } from "@/api/apiService";
import { BRAND_ENDPOINT } from "@/api/endpoints/brandEndpoint";

export const brandService = {
    addBrandRequest: (data) => apiService.post(BRAND_ENDPOINT.addBrandRequest, data)
}
