import {apiService} from "@/api/apiService";
import {CONTENT_ENDPOINT} from "@/api/endpoints/contentEndpoint";

export const contentService = {
    fetchContentCategory: (data = {}) => apiService.post(CONTENT_ENDPOINT.fetchContentCategory, data),
    fetchContentCategoryList: (data = {}) => apiService.post(CONTENT_ENDPOINT.fetchContentCategoryList, data)
}