6 lines
162 B
PHP
6 lines
162 B
PHP
|
<?php
|
||
|
use ProVM\Common\Controller\Attachments;
|
||
|
|
||
|
$app->group('/attachment/{attachment_id}', function($app) {
|
||
|
$app->get('[/]', [Attachments::class, 'get']);
|
||
|
});
|