Files
UAS_WEBGIS_IhyaUlumuddinHar…/03/frontend/js/services/statistik.service.js
T
2026-06-13 11:24:58 +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();
}
};