2018-12-14 21:16:31 -07:00
|
|
|
<?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" => [
|
|
|
|
]
|
2018-12-27 01:04:25 -07:00
|
|
|
],
|
|
|
|
"getnotes" => [
|
|
|
|
"load" => "getnotes.php",
|
|
|
|
"vars" => [
|
|
|
|
]
|
|
|
|
],
|
|
|
|
"getnote" => [
|
|
|
|
"load" => "getnote.php",
|
|
|
|
"vars" => [
|
|
|
|
"id" => "numeric"
|
|
|
|
]
|
2018-12-14 21:16:31 -07:00
|
|
|
]
|
|
|
|
];
|