9 lines
267 B
PHP
Executable File
9 lines
267 B
PHP
Executable File
<?php
|
|
|
|
use RR\Response;
|
|
use App\Core\Template\Output as Output;
|
|
use Routes\RouteCollection as RouteCollection;
|
|
|
|
RouteCollection::add('get', '/', '\App\Core\Welcome\WelcomeController@welcome');
|
|
//RouteCollection::add('get', '/welcome', 'WellcomeController@welcome');
|