7 lines
141 B
PHP
7 lines
141 B
PHP
<?php
|
|
use ProVM\NotariaRaby\Common\Controller\Web\Notaria;
|
|
|
|
$app->group('/notaria', function($app) {
|
|
$app->get('[/]', Notaria::class);
|
|
});
|