mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
|
|
namespace Modules\S3\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class S3ServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
$this->mergeConfigFrom(module_path('S3', 'config/s3.php'), 'media_storage');
|
|
}
|
|
}
|