♻️ Move the chat part of the Sphere service to the Messager service

This commit is contained in:
2026-01-01 22:09:08 +08:00
parent c503083df7
commit ab37bbc7b0
50 changed files with 3042 additions and 611 deletions

View File

@@ -1,5 +1,6 @@
using DysonNetwork.Shared.Auth;
using DysonNetwork.Shared.Http;
using DysonNetwork.Sphere.Poll;
using DysonNetwork.Sphere.Post;
using DysonNetwork.Sphere.Publisher;
using DysonNetwork.Sphere.Rewind;
@@ -23,6 +24,7 @@ public static class ApplicationConfiguration
// Map gRPC services
app.MapGrpcService<PostServiceGrpc>();
app.MapGrpcService<PollServiceGrpc>();
app.MapGrpcService<PublisherServiceGrpc>();
app.MapGrpcService<SphereRewindServiceGrpc>();
app.MapGrpcReflectionService();