19 lines
478 B
PHP
19 lines
478 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Service Author
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| Each panel installation is assigned a unique UUID to identify the
|
||
|
| author of custom services, and make upgrades easier by identifying
|
||
|
| standard Pterodactyl shipped services.
|
||
|
*/
|
||
|
'service' => [
|
||
|
'author' => env('SERVICE_AUTHOR'),
|
||
|
],
|
||
|
|
||
|
];
|