mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 02:24:23 -05:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Providers\AppServiceProvider;
|
|
use App\Providers\HorizonServiceProvider;
|
|
|
|
return [
|
|
AppServiceProvider::class,
|
|
HorizonServiceProvider::class,
|
|
];
|