Files
Traefik-Redis-Api/server.php
2025-05-05 19:27:09 -04:00

18 lines
270 B
PHP

<?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);
}