mirror of
https://github.com/Karaka-Management/oms-Draw.git
synced 2026-01-23 19:48:41 +00:00
13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/api/draw.*$' => [
|
|
[
|
|
'dest' => '\Modules\Draw\Controller:apiDrawCreate',
|
|
'verb' => RouteVerb::SET,
|
|
],
|
|
],
|
|
];
|