24 lines
478 B
PHP
24 lines
478 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\FoxAgent;
|
|
use App\Services\MemoryService;
|
|
use App\Services\SpeechService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton(MemoryService::class);
|
|
$this->app->singleton(SpeechService::class);
|
|
$this->app->singleton(FoxAgent::class);
|
|
}
|
|
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|