From a9741161a1bdd7ecbe07033b079105e172dae90d Mon Sep 17 00:00:00 2001 From: Cioclea Doru Octavian Date: Mon, 17 Jul 2023 20:33:13 +0300 Subject: [PATCH] feat: oops, register new service --- .../src/modules/auctionhistory/auction.history.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chainhook-subscriber/src/modules/auctionhistory/auction.history.module.ts b/chainhook-subscriber/src/modules/auctionhistory/auction.history.module.ts index 2fafb7d..b51d1a4 100644 --- a/chainhook-subscriber/src/modules/auctionhistory/auction.history.module.ts +++ b/chainhook-subscriber/src/modules/auctionhistory/auction.history.module.ts @@ -15,6 +15,7 @@ import { AuctionBidEntityRepositoryProvider } from '../auctions/providers/auctio import { AuctionBidHistoryEntityRepositoryProvider } from './providers/auction.bid.history.repository.provider'; import { AuctionHistoryEntityRepositoryProvider } from './providers/auction.history.repository.provider'; import { CancelAuctionService } from './services/cancel.auction.service'; +import { PlaceBidService } from './services/place.bid.service'; @Module({ imports: [ @@ -33,6 +34,7 @@ import { CancelAuctionService } from './services/cancel.auction.service'; StartAuctionService, CancelAuctionService, AuctionHistoryService, + PlaceBidService, AuctionEntityRepositoryProvider, AuctionBidEntityRepositoryProvider,