Files
oficial/app/resources/routes/ventas/precios.php

7 lines
130 B
PHP
Raw Normal View History

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