New desktop
Some checks failed
Deploy / deploy-staging (push) Failing after 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-06 03:20:50 +02:00
parent 756b4e119b
commit 888981c782
127 changed files with 31275 additions and 0 deletions

13
api/desktop.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
require_once dirname(__DIR__) . '/src/App/bootstrap.php';
use App\App;
header('Content-Type: application/json; charset=utf-8');
$app = new App(dirname(__DIR__));
echo json_encode($app->desktopPayload(), JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR);