mirror of
https://github.com/pelican-dev/panel.git
synced 2025-11-09 13:59:25 +01:00
12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
|
|
namespace App\Contracts\Plugins;
|
|
|
|
interface HasPluginProviders
|
|
{
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getProviders(): array;
|
|
}
|