8 lines
252 B
PHP
8 lines
252 B
PHP
|
<?php
|
||
|
use ProVM\Common\Controller\Attachments;
|
||
|
|
||
|
$app->group('/attachments', function($app) {
|
||
|
$app->post('/get', [Attachments::class, 'get']);
|
||
|
$app->post('/decrypt', [Attachments::class, 'decrypt']);
|
||
|
$app->get('[/]', Attachments::class);
|
||
|
});
|