mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
25 lines
442 B
PHP
25 lines
442 B
PHP
<?php
|
|
|
|
namespace App\Controllers\Serviciosmensajeria;
|
|
use App\Controllers\BaseController;
|
|
use function App\Controllers\ServiciosDigitalizacion\base_url;
|
|
use function App\Controllers\ServiciosDigitalizacion\service;
|
|
use function App\Controllers\ServiciosDigitalizacion\view;
|
|
|
|
|
|
class Mensajes extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Mensajes';
|
|
}
|
|
|
|
|
|
|
|
}
|