Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | import { Module } from '@nestjs/common'; import { HttpModule } from '@nestjs/axios'; import { Erc721SalesService } from './erc721sales.service'; // import { PhunksBidService } from './extensions/phunks.bid.extension.service'; // import { PhunksAuctionHouseService } from './extensions/phunks.auction.house.extension.service'; import { PhunksAuctionFlywheelService } from './extensions/phunks.auction.flywheel.extension.service'; import { StatisticsService } from './extensions/statistics.extension.service'; import { PhunksBidService } from './extensions/phunks.bid.extension.service'; import { PhunksAuctionHouseService } from './extensions/phunks.auction.house.extension.service'; import { PhunksErc721SpecialisedSalesService } from './extensions/phunks.erc721.specialised.service/phunks.erc721.specialised.service'; import { PhunksGifTwitterService } from './extensions/phunks.gif.twitter.extension.service'; import { DAOService } from './extensions/dao/dao.extension.service'; import { DAOController } from './extensions/dao/dao.controller'; import { ServeStaticModule } from '@nestjs/serve-static'; import { join } from 'path'; export const providers = [ Erc721SalesService, //PhunksErc721SpecialisedSalesService, //// // Below is a simple example of how to create and plug a custom // extension to the bot //// // // PhunksBidService, // PhunksAuctionHouseService, // PhunksAuctionFlywheelService, StatisticsService, DAOService, // PhunksGifTwitterService ] @Module({ imports: [ HttpModule, ServeStaticModule.forRoot({ rootPath: join(__dirname, '..', 'client'), })], providers: [ Erc721SalesService, StatisticsService, //// // Below is a simple example of how to create and plug a custom // extension to the bot //// // // PhunksBidService, // PhunksAuctionHouseService, // PhunksAuctionFlywheelService, // StatisticsService, // DAOService, ], controllers: [ DAOController ], }) export class AppModule { } |