feat(blog): bind binders accept (realtime, realtimeRegistry) params

Extend bindProductionBlog and bindDevSeedBlog to 7-arg signatures.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-08 22:41:07 +02:00
parent 7e1d2d5c4b
commit 1f12e6af12
4 changed files with 17 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ import {
type ILogger,
} from "@repo/core-shared/instrumentation";
import type { IEventBus } from "@repo/core-events";
import type { IRealtimeBroadcaster, IRealtimeHandlerRegistry } from "@repo/core-realtime";
import type { IJobQueue } from "@repo/core-shared/jobs";
import { blogContainer } from "./container";
import { BLOG_SYMBOLS } from "./symbols";
@@ -24,6 +25,8 @@ export function bindProductionBlog(
logger: ILogger,
bus: IEventBus,
queue: IJobQueue,
realtime: IRealtimeBroadcaster,
realtimeRegistry: IRealtimeHandlerRegistry,
): void {
// Bind shared instrumentation into feature container
if (blogContainer.isBound(INSTRUMENTATION_SYMBOLS.TRACER)) {
@@ -139,6 +142,8 @@ export function bindProductionBlog(
// output at the <gen:event-handlers> / <gen:jobs> anchors below.
void bus;
void queue;
void realtime;
void realtimeRegistry;
// <gen:event-handlers>
// <gen:jobs>
// <gen:realtime-handlers>