You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
413 B
PHP
15 lines
413 B
PHP
<?php
|
|
|
|
use CubiStore\Web\Controller\AppManager;
|
|
use CubiStore\Web\Controller\Home;
|
|
use CubiStore\Web\Controller\Repo;
|
|
|
|
return [
|
|
'/' => Home::class . '::index',
|
|
'/app/create' => [
|
|
'GET' => AppManager::class . '::createShow',
|
|
'POST' => AppManager::class . '::createAction',
|
|
],
|
|
'/repo/index-v1.json' => Repo::class . '::json',
|
|
'/repo/index-v1.jar' => Repo::class . '::jarJson',
|
|
]; |