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