mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
16 lines
374 B
PHP
16 lines
374 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Download;
|
|
|
|
use App\Http\Controllers\API\Controller as BaseController;
|
|
use App\Services\DownloadService;
|
|
|
|
abstract class Controller extends BaseController
|
|
{
|
|
protected DownloadService $downloadService;
|
|
|
|
public function __construct(DownloadService $downloadService)
|
|
{
|
|
$this->downloadService = $downloadService;
|
|
}
|
|
}
|