File size: 219 Bytes
db242f8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { Module } from '@nestjs/common';

import { ContentSafeService } from './content-safe.service';

@Module({
  providers: [ContentSafeService],
  exports: [ContentSafeService],
})
export class ContentSafeModule {}