Skip to content

Instantly share code, notes, and snippets.

@santoshyadavdev
Created January 12, 2020 19:46
Show Gist options
  • Save santoshyadavdev/8e0d5f2810b4ad9fe5cd49261da8e867 to your computer and use it in GitHub Desktop.
Save santoshyadavdev/8e0d5f2810b4ad9fe5cd49261da8e867 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { InMemoryDBModule } from '@nestjs-addons/in-memory-db';
import { ProductController } from './product.controller';
@Module({
imports: [InMemoryDBModule.forFeature('product')],
controllers: [ProductController]
})
export class ProductModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment