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