Computer-Vision-Lab / src /api /base44Client.js
YOUSEF2434's picture
Upload 96 files
a566fb0 verified
raw
history blame contribute delete
351 Bytes
import { createClient } from '@base44/sdk';
import { appParams } from '@/lib/app-params';
const { appId, token, functionsVersion, appBaseUrl } = appParams;
//Create a client with authentication required
export const base44 = createClient({
appId,
token,
functionsVersion,
serverUrl: '',
requiresAuth: false,
appBaseUrl
});