API Base App
This commit is contained in:
8
api/resources/routes/02_attachments.php
Normal file
8
api/resources/routes/02_attachments.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?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);
|
||||
});
|
Reference in New Issue
Block a user