You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

13 lines
301 B

  1. import { Module } from '@nestjs/common';
  2. import { ConfigModule } from '@nestjs/config';
  3. import { ScraperCndMtModule } from './modules/scraper-cnd-mt/scraper-cnd-mt.module';
  4. @Module({
  5. imports: [
  6. ConfigModule.forRoot({ isGlobal: true }),
  7. ScraperCndMtModule
  8. ],
  9. })
  10. export class AppModule {}