10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import { ErrorForwarder } from "../../../../helpers/error/instances/forwarder";
|
|
|
|
export const getMediaBySlugService = (slug: string) => {
|
|
try {
|
|
return `Mengambil media dengan slug '${slug}'`;
|
|
} catch (error) {
|
|
ErrorForwarder(error);
|
|
}
|
|
};
|