mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
22 lines
422 B
PHP
22 lines
422 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2022 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
$routes = service('routes');
|
|
|
|
/**
|
|
* WebSub routes file
|
|
*/
|
|
|
|
$routes->group('', [
|
|
'namespace' => 'Modules\WebSub\Controllers',
|
|
], static function ($routes): void {
|
|
$routes->cli('scheduled-websub-publish', 'WebSubController::publish');
|
|
});
|