import { Queue } from 'bullmq'; import { ForwardJobData } from '@tower/types'; import { parseRedisUrl } from './redis-connection'; export function createForwardQueue(redisUrl: string): Queue { return new Queue('tower-forward', { connection: parseRedisUrl(redisUrl), }); }