mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-17 14:18:35 +01:00
16 lines
338 B
PHP
16 lines
338 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
class HealthAction implements ActionInterface
|
||
|
{
|
||
|
public function execute(array $request)
|
||
|
{
|
||
|
$response = [
|
||
|
'code' => 200,
|
||
|
'message' => 'all is good',
|
||
|
];
|
||
|
return new Response(Json::encode($response), 200, ['content-type' => 'application/json']);
|
||
|
}
|
||
|
}
|