"error", "message" => "Endpoint tidak valid."]);
exit();
}
// 3. Jembatan Aman ke Folder Rahasia di LUAR public_html
// __DIR__ . "/../" artinya naik satu tingkat keluar dari public_html menuju root akun hosting
$target_file = __DIR__ . "/../madrasah-core/modules/" . $url . ".php";
if (file_exists($target_file)) {
include_once $target_file;
} else {
http_response_code(404);
echo json_encode(["status" => "error", "message" => "Modul backend sistem tidak ditemukan."]);
}