This commit is contained in:
yangsh
2025-12-01 17:54:31 +09:00
commit 40d9e3cc9a
102 changed files with 8896 additions and 0 deletions

10
app/Config/Routes.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
$routes->get('/', 'Home::index');
$routes->get('/hello', 'Home::hello');