But fix pusher missing grpc

This commit is contained in:
2025-09-06 22:20:19 +08:00
parent 02680d224a
commit 0117fdf084

View File

@@ -36,4 +36,11 @@ public static class ApplicationConfiguration
return app;
}
public static WebApplication ConfigureGrpcServices(this WebApplication app)
{
app.MapGrpcService<PusherServiceGrpc>();
return app;
}
}