Skip to content

Instantly share code, notes, and snippets.

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