summaryrefslogtreecommitdiff
path: root/api/v1/index.php
blob: dae86ab6fffc469e23de96183c3f47b402088bd8 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

header("Content-Type: application/json");
http_response_code(404);

echo json_encode(
	[
		"status" => "Unknown endpoint"
	]
);