[READ-ONLY] Mirror of https://github.com/Savy011/weeek-day. monorepo for weeekly fansite
Something went wrong. Try again.
12345678910111213141516import { client } from "@weeekly/api-client/client";
import { auth_client } from "./auth-client";
client.setConfig({ auth: async () => { const { data, error } = await auth_client.token();
if (error) { throw new Error(error.message || "Auth Failed"); }
return data.token; },});