7 lines
139 B
PHP
7 lines
139 B
PHP
<?php
|
|
use Incoviba\Controller\Ventas\Promotions;
|
|
|
|
$app->group('/promotions', function($app) {
|
|
$app->get('[/]', Promotions::class);
|
|
});
|