Files
Php-Template/server.php
Ron Rise 18a182f3cd
Some checks failed
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 18s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Failing after 30s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Failing after 19s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Failing after 13s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Failing after 3s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Failing after 23s
feat: implement gRPC Greeter service with example proto and enhance makefile
2025-12-04 00:04:57 -05:00

15 lines
207 B
PHP

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