MachineManager/api/apisettings.php

22 lines
435 B
PHP
Raw Normal View History

<?php
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
$APIS = [
"ping" => [
"load" => "ping.php",
"vars" => [
]
2020-05-14 21:14:38 -06:00
],
"lookup" => [
"load" => "lookup.php",
"vars" => [
"id" => "/^[0-9a-z]+$/"
]
]
];