videoapp-compiler / api /gallery.php
josephrw's picture
Upload folder using huggingface_hub
37ac66f verified
Raw
History Blame Contribute Delete
272 Bytes
<?php
require_once __DIR__ . '/config.php';
ensure_dirs();
$galleryFile = RECEIPT_DIR . '/gallery.json';
$entries = [];
if (file_exists($galleryFile)) {
$entries = read_json_file($galleryFile) ?: [];
}
json_response([
'ok' => true,
'entries' => $entries
]);