* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once __DIR__ . '/../vendor/autoload.php'; $app = new App(); require_once $app->getAppDirectory() . '/providers.php'; $app->mount('/', new \Sikofitt\Controller\ResumeControllerProvider()); $app->mount('/api', new \Sikofitt\Controller\ApiControllerProvider()); $app->run();