Rewind service basis and sphere service rewind

This commit is contained in:
2025-12-25 21:36:26 +08:00
parent 0bc77b948c
commit 24836fc606
8 changed files with 156 additions and 2 deletions

View File

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