8 lines
309 B
PHP
8 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
use Psr\Http\Message\ResponseInterface as Response;
|
||
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
||
|
|
||
|
// index GET route - this page should welcome the user and direct them to the available actions
|
||
|
$app->get('/', '\\BitGoblin\\Overseer\\Controllers\\HomeController:getIndex')->setName('index');
|