chore: remove useless files

This commit is contained in:
Matthieu Bessat 2022-08-02 22:25:45 +02:00
parent b06d185a85
commit 38faefbd06

View file

@ -1,13 +0,0 @@
<?php
namespace App;
use Slim\Routing\RouteCollectorProxy;
function addRoutes(\Slim\App $app): void
{
$container = $app->getContainer();
$app->get('/', [Controllers\HomeController::class, 'getHome']);
$app->get('/ping', [Controllers\PagesController::class, 'getPing']);
}