Skip to content

Commit

Permalink
refactor: change example to use package instead of direct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 2, 2021
1 parent 15e3082 commit 6a3c34f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import * as Bull from 'bull';
import Queue3 from 'bull';
import { Queue as QueueMQ, QueueScheduler, Worker } from 'bullmq';
import express from 'express';
import { BullMQAdapter } from './packages/api/src/queueAdapters/bullMQ';
import { BullAdapter } from './packages/api/src/queueAdapters/bull';
import { createBullBoard } from './packages/api/src/index';
import { ExpressAdapter } from './packages/express/src/ExpressAdapter';
import { BullMQAdapter } from '@bull-board/api/dist/src/queueAdapters/bullMQ';
import { BullAdapter } from '@bull-board/api/dist/src/queueAdapters/bull';
import { createBullBoard } from '@bull-board/api';
import { ExpressAdapter } from '@bull-board/express';

const redisOptions = {
port: 6379,
Expand Down

0 comments on commit 6a3c34f

Please sign in to comment.