wip: create new req endpoint to get characters data
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user