mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Plugins\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class Plugins extends BaseConfig
|
|
{
|
|
public string $folder = PLUGINS_PATH;
|
|
|
|
public string $repositoryUrl = 'https://plugins.castopod.org/';
|
|
}
|