🚧 (wip) get oauth url from backend

this function is under development and still need fixing
This commit is contained in:
2025-08-22 22:43:34 +07:00
parent a6b8ba9c3d
commit ab5bbd3491
3 changed files with 29 additions and 2 deletions

View File

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