mirror of
https://git.uupdump.net/uup-dump/json-api.git
synced 2025-04-29 02:57:17 +09:00
14 lines
301 B
PHP
14 lines
301 B
PHP
<?php
|
|
require_once 'api/listlangs.php';
|
|
require_once 'shared/main.php';
|
|
|
|
$updateId = isset($_GET['id']) ? $_GET['id'] : null;
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
$apiResponse = uupListLangs($updateId);
|
|
if(isset($apiResponse['error']))
|
|
http_response_code(400);
|
|
|
|
sendResponse($apiResponse);
|