2021-03-15 17:42:56 -03:00
|
|
|
<?php
|
|
|
|
use ProVM\Money\Common\Controller\API;
|
|
|
|
|
|
|
|
include_once 'currencies.php';
|
2021-03-16 00:46:54 -03:00
|
|
|
include_once 'values.php';
|
2021-03-15 17:42:56 -03:00
|
|
|
|
|
|
|
$app->get('/', API::class);
|
2021-03-18 23:17:19 -03:00
|
|
|
|
|
|
|
$app->options('/', function ($request, $response, $args) {
|
|
|
|
return $response;
|
|
|
|
});
|