// Create a new instance of our RouteCollection class.

$routes = Services::routes();
This commit is contained in:
CHIEFSOFT\ameye
2024-07-16 20:19:47 -04:00
parent eed5c6d92d
commit 1185fb97ec
+3 -1
View File
@@ -1,6 +1,8 @@
<?php
namespace Config;
global $routes;
// Create a new instance of our RouteCollection class.
$routes = Services::routes();
$routes->get('/', 'Home::index');
$routes->get('/en/wrench/api/v1/test','Home::test');