repod/lib/Controller/EpisodesController.php
Michel Roux 3f9bc372ce
All checks were successful
repod / nextcloud (push) Successful in 1m51s
repod / nodejs (push) Successful in 2m43s
EpisodeActionExtra done
2023-08-24 12:48:10 +02:00

18 lines
309 B
PHP

<?php
declare(strict_types=1);
namespace OCA\RePod\Controller;
use OCA\RePod\AppInfo\Application;
use OCP\AppFramework\Controller;
use OCP\IRequest;
class EpisodesController extends Controller
{
public function __construct(IRequest $request)
{
parent::__construct(Application::APP_ID, $request);
}
}