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

@ -1,9 +1,9 @@
import { baseURL } from "./baseUrl";
import {baseURL} from "./baseUrl";
export const getContentReferenceAPI = (malId: number) => {
return {
baseURL,
getMediaFullInfo: `/anime/${malId}/full`,
getMediaCharactersWithVA: `/anime/${malId}/characters`,
};
return {
baseURL,
getMediaFullInfo: `/anime/${malId}/full`,
getMediaCharacters: `/anime/${malId}/characters`,
};
};