feat: add uploader

This commit is contained in:
JaguarJack
2023-01-11 17:17:36 +08:00
parent 68d378b4ef
commit d823f74015
15 changed files with 457 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Modules\Common\Providers;
use Catch\CatchAdmin;
use Catch\Providers\CatchModuleServiceProvider;
use Modules\User\Events\Login;
use Modules\User\Listeners\Login as LoginListener;
use Modules\User\Middlewares\OperatingMiddleware;
class CommonServiceProvider extends CatchModuleServiceProvider
{
/**
* route path
*
* @return string|array
*/
public function routePath(): string|array
{
// TODO: Implement path() method.
return CatchAdmin::getModuleRoutePath('common');
}
}