mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-01 17:36:51 -05:00
10 lines
135 B
PHP
10 lines
135 B
PHP
<?php
|
|
|
|
header("Content-Type: application/json");
|
|
http_response_code(404);
|
|
|
|
echo json_encode(
|
|
[
|
|
"status" => "Unknown endpoint"
|
|
]
|
|
);
|