9 lines
235 B
PHP
9 lines
235 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
http_response_code(200);
|
|
echo json_encode([
|
|
"status"=>"stub",
|
|
"info"=>"Legacy endpoint — use /api/imagegen.php or /api/vision-proxy.php instead",
|
|
"migration"=>"2026-04"
|
|
]);
|