First commit

This commit is contained in:
2022-02-22 19:07:39 +01:00
commit b67fac10bc
28 changed files with 1194 additions and 0 deletions

10
public/index.php Normal file
View File

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