mirror of
https://code.castopod.org/adaures/castopod
synced 2025-09-23 12:06:08 +00:00
15 lines
252 B
PHP
15 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/';
|
|
}
|