initial commit

This commit is contained in:
2026-06-25 21:36:46 +00:00
commit f3a9e905bc
14 changed files with 176379 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
header('Content-Type: application/json; charset=utf-8');
header('Cache-Control: no-store');
echo json_encode([
'groups' => [
[
'id' => 'starlink',
'name' => 'Starlink (CelesTrak)'
],
[
'id' => 'noaa',
'name' => 'NOAA (CelesTrak)'
],
[
'id' => 'weather',
'name' => 'Weather (CelesTrak)'
],
[
'id' => 'active',
'name' => 'Active (CelesTrak)'
],
[
'id' => 'stations',
'name' => 'Space Stations (CelesTrak)'
]
]
], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);