Initial commit

This commit is contained in:
2025-12-29 16:27:01 +00:00
committed by Siteworx Pro Gitea
commit 23f2b6432b
147 changed files with 14731 additions and 0 deletions

14
server.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
use Siteworxpro\App\Api;
require __DIR__ . '/vendor/autoload.php';
try {
$server = new Api();
$server->startServer();
} catch (JsonException $e) {
echo $e->getMessage();
exit(1);
}