All checks were successful
Build and publish the docker image / build (push) Successful in 18s
Signed-off-by: ngn <ngn@ngn.tf>
11 lines
135 B
PHP
11 lines
135 B
PHP
<?php
|
|
|
|
header("Content-Type: application/json");
|
|
http_response_code(404);
|
|
|
|
echo json_encode(
|
|
[
|
|
"status" => "Unknown endpoint"
|
|
]
|
|
);
|