<?php
header('Content-Type: application/json; charset=utf-8');
header('Access-Control-Allow-Origin: *');

$file = __DIR__ . '/data.json';
if(!file_exists($file)){ echo json_encode(null); exit; }
echo file_get_contents($file);
