Files
AnimeTV-Frontend/features/auth/lib/getGoogleAuthUrl.ts
Rafi Arrafif ab5bbd3491 🚧 (wip) get oauth url from backend
this function is under development and still need fixing
2025-08-22 22:43:34 +07:00

10 lines
196 B
TypeScript

"use server";
import { api } from "@/shared/api/connector";
const getGoogleAuthUrl = async () => {
const res = await api.get(`debug`);
return res.json();
};
export default getGoogleAuthUrl;