mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-08 14:36:05 +01:00
12 lines
181 B
PHP
12 lines
181 B
PHP
<?php
|
|
|
|
error_reporting(0);
|
|
|
|
$skip_permissions = true;
|
|
include_once __DIR__.'/../core.php';
|
|
|
|
$info = Update::getDatabaseStructure();
|
|
$response = json_encode($info);
|
|
|
|
echo $response;
|