remove config api endpoint

This commit is contained in:
Jonas Leder 2021-07-11 00:52:00 +02:00
parent 7bd24503fe
commit e513b96497

View file

@ -1,12 +0,0 @@
<?php
require "./lib/config.php";
$configValue = $_GET['name'];
switch ($configValue){
case "sitekey":
echo($sitekey);
break;
default:
echo("notFound");
}