mediahub-fe/service/curated-content/curated-content.ts

7 lines
192 B
TypeScript
Raw Normal View History

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