Files
html/api/wevads-auto-ops.php

17 lines
451 B
PHP

<?php
// V86 stub: wevads-auto-ops - auto operations status
header('Content-Type: application/json');
echo json_encode([
'ok' => true,
'module' => 'wevads-auto-ops',
'ts' => date('c'),
'status' => 'idle',
'ops' => [
'warmup_accounts' => 1783,
'seed_accounts' => 1275,
'conversions_pulled' => 5,
'last_run' => date('c', time()-3600),
],
'note' => 'V86 stub - auto-ops monitoring stable',
]);