1
Fork 0
forked from Korbs/4get
NarviSearch/api/v1/index.php

11 lines
135 B
PHP
Raw Normal View History

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