fix(core): harden settlement and wallet integration
This commit is contained in:
@@ -5,11 +5,13 @@ namespace App\Providers;
|
||||
use App\Models\Player;
|
||||
use App\Models\AdminUser;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Contracts\WalletApiDnsResolver;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Illuminate\Cache\RateLimiting\Limit;
|
||||
use Illuminate\Support\Facades\RateLimiter;
|
||||
use App\Services\Wallet\MainSiteWalletGateway;
|
||||
use App\Services\Wallet\HttpMainSiteWalletGateway;
|
||||
use App\Support\Integration\SystemWalletApiDnsResolver;
|
||||
|
||||
final class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
@@ -19,6 +21,7 @@ final class AppServiceProvider extends ServiceProvider
|
||||
public function register(): void
|
||||
{
|
||||
$this->app->singleton(MainSiteWalletGateway::class, HttpMainSiteWalletGateway::class);
|
||||
$this->app->singleton(WalletApiDnsResolver::class, SystemWalletApiDnsResolver::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user