🐛 Fix the webfeed

This commit is contained in:
2026-01-14 01:18:34 +08:00
parent 0e1f13ae7d
commit 2401eed3ed
4 changed files with 34 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ using System.Text.Json.Serialization;
using DysonNetwork.Insight.Reader;
using DysonNetwork.Insight.Thought;
using DysonNetwork.Shared.Cache;
using DysonNetwork.Shared.Proto;
using DysonNetwork.Shared.Registry;
using Microsoft.SemanticKernel;
using NodaTime;
@@ -67,8 +68,8 @@ public static class ServiceCollectionExtensions
{
services.AddSingleton<ThoughtProvider>();
services.AddScoped<ThoughtService>();
services.AddScoped<WebFeedService>();
services.AddScoped<WebReaderService>();
services.AddScoped<Reader.WebFeedService>();
services.AddScoped<Reader.WebReaderService>();
return services;
}