mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-27 23:54:45 +02:00
17 lines
323 B
PHP
17 lines
323 B
PHP
<?php
|
|
|
|
namespace App\Features;
|
|
|
|
use Filament\Actions\Action;
|
|
|
|
abstract class Feature
|
|
{
|
|
/** you need to agree to the eula in order to run the server */
|
|
abstract public function listeners(): array;
|
|
|
|
/** eula */
|
|
abstract public function featureName(): string;
|
|
|
|
abstract public function action(): Action;
|
|
}
|