wip: create new req endpoint to get characters data

This commit is contained in:
2026-06-29 12:52:52 +07:00
parent a04d1ffdf1
commit 28b3de29d8
8 changed files with 148 additions and 139 deletions

View File

@ -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);
}
}