10 lines
265 B
PHP
10 lines
265 B
PHP
<?php
|
|
|
|
use Lycoreco\Apps\Recipes\Controllers;
|
|
use Lycoreco\Includes\Routing\Path;
|
|
|
|
$recipes_urls = [
|
|
new Path('/recipe/[:string]', new Controllers\SingleRecipeController(), 'single'),
|
|
new Path('/catalog', new Controllers\CatalogController(), 'catalog'),
|
|
];
|