6 lines
240 B
PHP
6 lines
240 B
PHP
<?php
|
|
// This is a placeholder for future backend logic.
|
|
// For now, it doesn't do anything.
|
|
header('Content-Type: application/json');
|
|
echo json_encode(['status' => 'success', 'message' => 'Request received. Processing will start soon.']);
|