blob: 6ac0e69cd4e0408817046ceca0629a483f41e010 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
"use server";
export default async function testFunction(title) {
const res = await fetch(
"https://dramalama-api.vercel.app/anime/gogoanime/" + title
);
const data = await res.json();
return data;
}
|