This commit is contained in:
2021-03-18 23:17:19 -03:00
parent 79216bb727
commit 3b38df5a70
5 changed files with 81 additions and 1 deletions

View File

@ -5,3 +5,7 @@ include_once 'currencies.php';
include_once 'values.php';
$app->get('/', API::class);
$app->options('/', function ($request, $response, $args) {
return $response;
});