Created structure for additional API version handlers.

This commit is contained in:
flash 2022-07-15 22:20:20 +00:00
parent 9948642a5a
commit 7160e9909d
5 changed files with 651 additions and 566 deletions

View file

@ -12,7 +12,7 @@ define('UIH_DEBUG', is_file(UIH_ROOT . '/.debug'));
define('UIH_PUBLIC', UIH_ROOT . '/public');
define('UIH_SOURCE', UIH_ROOT . '/src');
define('UIH_LIBRARY', UIH_ROOT . '/lib');
define('UIH_VERSION', '20220715');
define('UIH_VERSION', '20220716');
require_once UIH_LIBRARY . '/index/index.php';
@ -36,3 +36,5 @@ try {
echo '<h3>Unable to connect to database</h3>';
die($ex->getMessage());
}
$ctx = new UihContext($db);