2022-04-19 01:44:14 +02:00

11 lines
177 B
PHP

<?php
const ROOT_PATH = __DIR__ . '/../';
use KamilCraftApi\Application;
require ROOT_PATH . 'vendor/autoload.php';
$app = new Application(ROOT_PATH . '.env');
$app->run();