Files
D1041231073-WebGISPovertyMap/03/frontend/js/services/statistik.service.js
T
2026-06-10 22:07:47 +07:00

11 lines
237 B
JavaScript

export const CONFIG = {
BASE_URL: '/03/backend/api'
};
export const statistikService = {
getKepadatan: async () => {
const res = await fetch(`${CONFIG.BASE_URL}/statistik.php`);
return await res.json();
}
};