This repository has been archived on 2020-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
webapi/mpt.php
2020-08-21 23:36:42 +02:00

10 lines
196 B
PHP

<?php
include 'vars.php';
if ($_SERVER["PATH_INFO"] == "/latest") {
header('Content-Type: text/plain');
echo $mptlatest;
} elseif ($_SERVER["PATH_INFO"] == "/script") {
echo "WIP";
}