diff options
Diffstat (limited to 'api/index.php')
-rw-r--r-- | api/index.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/api/index.php b/api/index.php new file mode 100644 index 0000000..dae86ab --- /dev/null +++ b/api/index.php @@ -0,0 +1,10 @@ +<?php + +header("Content-Type: application/json"); +http_response_code(404); + +echo json_encode( + [ + "status" => "Unknown endpoint" + ] +); |