/**
 * @zync/realtime/server — server-only runtime surface.
 *
 * `publishRealtimeEvent` takes a Cloudflare `Queue` (a Workers runtime global),
 * so it MUST NOT be reachable from the default `@zync/realtime` barrel — the
 * browser client imports only event types from there, and pulling this module
 * into a DOM-lib compile drags Workers globals with it. Worker code only.
 */
export { publishRealtimeEvent } from './publish'
