mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 14:34:44 +02:00
12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\API;
|
|
|
|
use Dingo\Api\Routing\Helpers;
|
|
use Illuminate\Routing\Controller;
|
|
|
|
class BaseController extends Controller
|
|
{
|
|
use Helpers;
|
|
}
|