File indexing completed on 2024-12-15 03:45:05

0001 <?php
0002 /*
0003     SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org>
0004 
0005     SPDX-License-Identifier: MIT
0006 */
0007 
0008 include_once(__DIR__ . '/../shared/restdispatcher.php');
0009 include_once(__DIR__ . '/../shared/admin.php');
0010 
0011 $handler = new Admin();
0012 RESTDispatcher::dispatch($handler);
0013 ?>