9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
import {AppError} from "../../../helpers/error/instances/app";
|
|
|
|
export const bulkInsertMediaCharacterRepository = async (animeMalId: number) => {
|
|
try {
|
|
return animeMalId
|
|
} catch (error) {
|
|
throw new AppError(500, "Failed to bulk insert media characters", error);
|
|
}
|
|
} |