Link scrapping for preview

This commit is contained in:
2025-06-21 13:46:30 +08:00
parent 95010e4188
commit 5f30b56ef8
8 changed files with 546 additions and 2 deletions

View File

@ -18,14 +18,13 @@ using DysonNetwork.Sphere.Storage;
using DysonNetwork.Sphere.Storage.Handlers;
using DysonNetwork.Sphere.Wallet;
using Microsoft.AspNetCore.RateLimiting;
using Microsoft.EntityFrameworkCore;
using Microsoft.OpenApi.Models;
using NodaTime;
using NodaTime.Serialization.SystemTextJson;
using Quartz;
using StackExchange.Redis;
using System.Text.Json;
using System.Threading.RateLimiting;
using DysonNetwork.Sphere.Connection.WebReader;
using tusdotnet.Stores;
namespace DysonNetwork.Sphere.Startup;
@ -221,6 +220,7 @@ public static class ServiceCollectionExtensions
services.AddScoped<WalletService>();
services.AddScoped<PaymentService>();
services.AddScoped<IRealtimeService, LivekitRealtimeService>();
services.AddScoped<WebReaderService>();
return services;
}