Files
safekat/ci4/app/Controllers/Servicios/Impresion.php
2023-06-06 13:57:34 +02:00

21 lines
249 B
PHP

<?php
namespace App\Controllers\Servicios;
use App\Controllers\BaseController;
class Impresion extends BaseController
{
function __construct()
{
}
public function index()
{
echo 'Impresion';
}
}