Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 20, 2022 16:47
Show Gist options
  • Save newerton/e81fbd0c93b471f5e5a061a160eb30c5 to your computer and use it in GitHub Desktop.
Save newerton/e81fbd0c93b471f5e5a061a160eb30c5 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { MongooseModule } from '@nestjs/mongoose';
import { IDataServices } from '../../../core';
import { MongoDataServices } from './mongo-data-services.service';
@Module({
providers: [
{
provide: IDataServices,
useClass: MongoDataServices,
},
],
exports: [IDataServices],
})
export class MongoDataServicesModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment