13 lines
247 B
PHP
13 lines
247 B
PHP
<?php
|
|
use ProVM\Money\Common\Controller\API;
|
|
|
|
include_once 'currencies.php';
|
|
include_once 'values.php';
|
|
include_once 'sources.php';
|
|
|
|
$app->get('/', API::class);
|
|
|
|
$app->options('/', function ($request, $response, $args) {
|
|
return $response;
|
|
});
|