TODO: Replace stubs

This commit is contained in:
2025-04-25 19:42:16 -04:00
commit 9bdecb1455
16 changed files with 2996 additions and 0 deletions

17
server.php Normal file
View File

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