feat: init

This commit is contained in:
2026-03-27 12:18:36 +01:00
commit cc59a91fea
55 changed files with 21768 additions and 0 deletions

8
frontend/src/api.js Normal file
View File

@@ -0,0 +1,8 @@
import axios from 'axios';
const API_URL = 'http://localhost:3001/api';
export async function getServices() {
const response = await axios.get(`${API_URL}/services`);
return response.data;
}