feat: create bulk insertion for characters

This commit is contained in:
Rafi Arrafif
2026-01-25 10:57:35 +07:00
parent fe10412f1a
commit 11834924e9
12 changed files with 198 additions and 6 deletions

View File

@ -0,0 +1,8 @@
import { baseURL } from "./baseUrl";
export const getPeopleAPI = (malId: number) => {
return {
baseURL,
getPeopleInfo: `/people/${malId}`,
};
};