import { httpGetInterceptor } from "../http-config/http-interceptor-service"; export async function detailMedia(id: any) { const url = `media?id=${id}`; return httpGetInterceptor(url); }