mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
19 lines
315 B
PHP
19 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
class RssHealthController extends Controller
|
|
{
|
|
public function __invoke(): JsonResponse
|
|
{
|
|
return response()->json([
|
|
'status' => 'ok',
|
|
'service' => 'rss',
|
|
]);
|
|
}
|
|
}
|