4Get/api/index.php
2025-02-21 22:04:53 +05:30

10 lines
135 B
PHP

<?php
header("Content-Type: application/json");
http_response_code(404);
echo json_encode(
[
"status" => "Unknown endpoint"
]
);