mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 17:25:45 +00:00
20 lines
437 B
PHP
20 lines
437 B
PHP
![]() |
<?php
|
||
|
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Modules\Api\Rest\V1\Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class Api extends BaseConfig
|
||
|
{
|
||
|
/**
|
||
|
* --------------------------------------------------------------------------
|
||
|
* Rest API gateway
|
||
|
* --------------------------------------------------------------------------
|
||
|
* Defines a base route for all API pages
|
||
|
*/
|
||
|
public string $gateway = 'api/rest/v1/';
|
||
|
}
|