website service tests

This commit is contained in:
2025-12-23 23:36:55 +01:00
parent efcdbd17f2
commit 43a8afe7a9
13 changed files with 1107 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
import { ApiClient } from './api/index';
const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:3001';
export const apiClient = new ApiClient(API_BASE_URL);