1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-13 17:28:08 -04:00
4get/api/v1/index.php

11 lines
135 B
PHP
Raw Permalink Normal View History

2023-07-22 14:41:14 -04:00
<?php
header("Content-Type: application/json");
http_response_code(404);
echo json_encode(
[
"status" => "Unknown endpoint"
]
);