Abuse report

This commit is contained in:
2025-06-25 23:49:18 +08:00
parent c6cb2a0dc3
commit 21cf212d8f
32 changed files with 4152 additions and 24 deletions

View File

@ -25,6 +25,7 @@ using StackExchange.Redis;
using System.Text.Json;
using System.Threading.RateLimiting;
using DysonNetwork.Sphere.Connection.WebReader;
using DysonNetwork.Sphere.Safety;
using DysonNetwork.Sphere.Wallet.PaymentHandlers;
using tusdotnet.Stores;
@ -224,6 +225,7 @@ public static class ServiceCollectionExtensions
services.AddScoped<IRealtimeService, LivekitRealtimeService>();
services.AddScoped<WebReaderService>();
services.AddScoped<AfdianPaymentHandler>();
services.AddScoped<SafetyService>();
return services;
}