File size: 229 Bytes
4acc19f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { Module } from '@nestjs/common';
import { BaseQueryCoreService } from './base-query-core.service';

@Module({
  providers: [BaseQueryCoreService],
  exports: [BaseQueryCoreService],
})
export class BaseQueryCoreModule {}